From e2c9fd8e870088422c92bb5f961703bbb5ba4616 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Wed, 21 Aug 1996 04:32:09 +0000 Subject: [PATCH] |May I suggest to add access to the oid of an inserted |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 | --- src/interfaces/libpq++/libpq++.H | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/interfaces/libpq++/libpq++.H b/src/interfaces/libpq++/libpq++.H index 9b3e1739007..24482570f50 100644 --- a/src/interfaces/libpq++/libpq++.H +++ b/src/interfaces/libpq++/libpq++.H @@ -14,7 +14,7 @@ * * 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 $ * *------------------------------------------------------------------------- */ @@ -124,6 +124,10 @@ public: {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 -- 2.39.5