RE: jdbc how to get SERIAL - Mailing list pgsql-interfaces

From Peter Mount
Subject RE: jdbc how to get SERIAL
Date
Msg-id 1B3D5E532D18D311861A00600865478CF1B0F0@exchange1.nt.maidstone.gov.uk
Whole thread Raw
In response to jdbc how to get SERIAL  (John Thorhauer <jthorhauer@phoenixcolor.com>)
List pgsql-interfaces
The function currval does this. Ie:
select currval("mycol_id_seq");

where mycol is the table and id is the column for the sequence.

Would return that value. PS: The result is for that session, so if another
session increments that sequence, you don't see that value but the last
value of _your_ session.

Peter

--
Peter Mount
Enterprise Support
Maidstone Borough Council
Any views stated are my own, and not those of Maidstone Borough Council


-----Original Message-----
From: John Thorhauer [mailto:jthorhauer@phoenixcolor.com]
Sent: Tuesday, July 18, 2000 7:37 PM
To: pgsql-interfaces@postgresql.org
Subject: [INTERFACES] jdbc how to get SERIAL


How do I get the id column of a row via jdbc if the column is a SERIAL
column.  I want to get the id of the row after I insert new data via
jdbc execute command.

Thanks,
John Thorhauer

-- 
********************************
** John Thorhauer
** jthorhauer@phoenixcolor.com
********************************


pgsql-interfaces by date:

Previous
From: Peter Mount
Date:
Subject: RE: ResultSetMetaData problems (getColumnType() and -TypeName)
Next
From: Peter Mount
Date:
Subject: RE: Connection.setBytes()