Re: get last oid

From: "Ricky" <ricky(at)babonmultimedia(dot)com>
To: "postgre" <pgsql-odbc(at)postgresql(dot)org>
Subject: Re: get last oid
Date: 2003-12-19 08:25:23
Message-ID: 044a01c3c609$b4772ba0$0200a8c0@bandeng
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

thanks Roberto,

i'm new in vb and also in postgresql,
well, if there'no function to get the last oid, how to catch the message
INSERT 2237168 1 in visual basic ?

if no, maybe i have to try to select the bigest oid to get it but i'm
affraid while somebody insert in the same time, the oid will not match.

you have suggestion about this?

BR

Ricky

----- Original Message -----
From: "Ropel" <ropel(at)ropel(dot)it>
To: "postgre" <pgsql-odbc(at)postgresql(dot)org>
Sent: Friday, December 19, 2003 3:20 PM
Subject: Re: [ODBC] get last oid

> 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(at)babonmultimedia(dot)com>
> To: "postgre" <pgsql-odbc(at)postgresql(dot)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
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>
>

In response to

Responses

Browse pgsql-odbc by date

  From Date Subject
Next Message Ropel 2003-12-19 09:02:57 Re: get last oid
Previous Message Ropel 2003-12-19 07:20:56 Re: get last oid