RE: jdbc how to get SERIAL

Поиск
Список
Период
Сортировка
От Peter Mount
Тема RE: jdbc how to get SERIAL
Дата
Msg-id 1B3D5E532D18D311861A00600865478CF1B0F0@exchange1.nt.maidstone.gov.uk
обсуждение исходный текст
Ответ на jdbc how to get SERIAL  (John Thorhauer <jthorhauer@phoenixcolor.com>)
Список 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 по дате отправления:

Предыдущее
От: Peter Mount
Дата:
Сообщение: RE: ResultSetMetaData problems (getColumnType() and -TypeName)
Следующее
От: Peter Mount
Дата:
Сообщение: RE: Connection.setBytes()