Re: get last oid

Поиск
Список
Период
Сортировка
От Ropel
Тема Re: get last oid
Дата
Msg-id 002001c3c600$eb3f9c20$0100a8c0@ropelxp
обсуждение исходный текст
Ответ на get last oid  ("Ricky" <ricky@babonmultimedia.com>)
Список pgsql-odbc
PHP uses "pg_last_oid() ": a reliable way because it work's at connection
level (i.e. it will not be affected
by inserts made from other tasks or connections .
I'd try searching starting from there for a solution without php: every
other language i've seen has an equivalent solution.

With "psql" you have:

postgres=# insert into cars(name) values('lamborghini');
INSERT 2237168 1

where 2237168 is the oid...

I hope it willl help...

Roberto


----- Original Message -----
From: "Ricky" <ricky@babonmultimedia.com>
To: "postgre" <pgsql-odbc@postgresql.org>
Sent: Friday, December 19, 2003 1:05 AM
Subject: [ODBC] get last oid


> hello,
>
> i try get the last oid after INSERT command but i have no idea about
> command/function
> .anyone know or is there any better method?
>
> Thanks
> Ricky
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster



В списке pgsql-odbc по дате отправления:

Предыдущее
От: "Ricky"
Дата:
Сообщение: get last oid
Следующее
От: "Ricky"
Дата:
Сообщение: Re: get last oid