diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-10-04 15:17:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-10-04 15:17:06 +0000 |
commit | d0741fb42f79bac0acb0ac03907426a9a5f50dec (patch) | |
tree | 43578b1dd9b97e785828ce7ac77ca854e766ec1d /src | |
parent | ee8d39a8524140d984dd1048665500fe581037cd (diff) | |
download | postgresql-d0741fb42f79bac0acb0ac03907426a9a5f50dec.tar.gz postgresql-d0741fb42f79bac0acb0ac03907426a9a5f50dec.zip |
As we now use lipq++.H which wasn't around when I first posted the
2 line GetIsNull diffs, we now need this too:
Patrick Welche
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq++/libpq++.H | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/libpq++/libpq++.H b/src/interfaces/libpq++/libpq++.H index 898a146aa31..19d2ff160b4 100644 --- a/src/interfaces/libpq++/libpq++.H +++ b/src/interfaces/libpq++/libpq++.H @@ -30,7 +30,7 @@ extern "C" { #include "libpq-fe.h" } -static char rcsid[] = "$Id: libpq++.H,v 1.4 1999/05/23 01:03:58 momjian Exp $"; +static char rcsid[] = "$Id: libpq++.H,v 1.5 1999/10/04 15:17:06 momjian Exp $"; // **************************************************************** @@ -88,6 +88,8 @@ public: short FieldSize(const char *field_name); const char* GetValue(int tup_num, int field_num); const char* GetValue(int tup_num, const char *field_name); + int GetIsNull(int tup_num, int field_num); + int GetIsNull(int tup_num, const char* field_name); int GetLength(int tup_num, int field_num); int GetLength(int tup_num, const char* field_name); void DisplayTuples(FILE *out = 0, int fillAlign = 1, |