diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-21 04:32:09 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-21 04:32:09 +0000 |
commit | e2c9fd8e870088422c92bb5f961703bbb5ba4616 (patch) | |
tree | f3b69dae5821075adb1cd59d59318f30f42d8aa6 | |
parent | 5e773a4f70dd07d57e07cfbc856e7822dc6defdc (diff) | |
download | postgresql-e2c9fd8e870088422c92bb5f961703bbb5ba4616.tar.gz postgresql-e2c9fd8e870088422c92bb5f961703bbb5ba4616.zip |
|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
|
-rw-r--r-- | src/interfaces/libpq++/libpq++.H | 6 |
1 files changed, 5 insertions, 1 deletions
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 |