Re: How to Insert the Row in ResultSet by moveToInsertRow() ... insertRow()? - Mailing list pgsql-jdbc

From vasylenko@uksatse.org.ua
Subject Re: How to Insert the Row in ResultSet by moveToInsertRow() ... insertRow()?
Date
Msg-id OF8BE49163.18F072B1-ONC225725F.0048EBCA-C225725F.0049CD45@UKCC.UKSATSE
Whole thread Raw
In response to How to Insert the Row in ResultSet by moveToInsertRow() ... insertRow()?  (vasylenko@uksatse.org.ua)
List pgsql-jdbc

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.

pgsql-jdbc by date:

Previous
From: Dave Cramer
Date:
Subject: Re: connection pooling for postgres
Next
From: Deval kulshrestha
Date:
Subject: Test db connection to 'jdbc:postgresql://grid-master:5432/arco' ... Failed (1)