|record, by a small patch to libpq++? At least until the
|feature that will allow dumped oid's to be re-loaded into
|a database becomes available, I need access to the oids
|of newly created records... To this end, I have written a
|three-line wrapper for the PQoidStatus function in libpq and
|named this wrapper OidStatus() (I'd appreciate suggestions for
|a name that would better fit into the general naming scheme).
|
|Regards,
|
|Ernst
|
*
* IDENTIFICATION
*
- * $Id: libpq++.H,v 1.1.1.1 1996/07/09 06:22:18 scrappy Exp $
+ * $Id: libpq++.H,v 1.2 1996/08/21 04:32:09 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
{return PQgetline(conn, string, length);};
void putline(char* string)
{PQputline(conn, string);};
+ const char *OidStatus()
+ {
+ return PQoidStatus(result);
+ }
int endcopy()
{return PQendcopy(conn);};
~PGdatabase() {}; // close connection and clean up