Greg Stark <[EMAIL PROTECTED]> writes: > This is from the DBI documentation -- that is, the non-driver-specific > abstract interface documentation.
> Returns a value 'identifying' the row just inserted, if possible. > Typically this would be a value assigned by the database server to > a column with an auto_increment or serial type. Aside from the numerous serious problems pointed out in the documentation, this has an even more fatal objection, which is that it's unspecified what the result value is and thus there is no portable way of *using* the result after you have it. (If the PG driver returns an OID you certainly couldn't use that the same way as some other driver that returns a primary key ... especially a multicolumn primary key ...) This "portable" function is so unportable that I see no reason to accept it as precedent. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly