Re: - Mailing list pgsql-jdbc

From Dave Cramer
Subject Re:
Date
Msg-id 4D21DDDA-29B1-43A1-BB50-838872BC20F3@fastcrypt.com
Whole thread Raw
In response to  (vasylenko@uksatse.org.ua)
Responses Re:
List pgsql-jdbc
What you are looking for is in hibernate, or some other high level
persistence framework . In JDBC you have to do all the work.

Dave

On 10-Jan-07, at 8:16 AM, vasylenko@uksatse.org.ua wrote:

>
>
> Such declaration like this
>
> id int4 NOT NULL DEFAULT nextval('seq_group_id'::regclass)
> and
> CONSTRAINT i_group PRIMARY KEY (id)
>
> give me the oportumity don't bother about unique value of id
> and use another query.
>
> INSERT INTO  groups(g_name) VALUES("new group");
>
> I hope to find the same easy way in using ResultSet's objects (),
> i.e. to
> forget about id in my code until it nessesary for me and not for jdbc.
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 1: if posting/reading through Usenet, please send an appropriate
>        subscribe-nomail command to majordomo@postgresql.org so that
> your
>        message can get through to the mailing list cleanly


pgsql-jdbc by date:

Previous
From: vasylenko@uksatse.org.ua
Date:
Subject: Re: How to Insert the Row in ResultSet by moveToInsertRow() ... insertRow()?
Next
From: "Andres Olarte"
Date:
Subject: Re: