On Tue, Aug 01, 2006 at 06:19:29PM +0200, phazon wrote: > I juste want to get the OID of the line inserted. Does anyone know how to do > it ? It depends on the client interface. What interface are you using? OIDs are deprecated as row identifiers; the preferred method is to use a sequence (serial column). To get a sequence's value you can use currval() or lastval() (the latter available in 8.1). -- Michael Fuhr