diff options
Diffstat (limited to 'src')
-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 |