Commit d0741fb4 authored by Bruce Momjian's avatar Bruce Momjian

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
parent ee8d39a8
...@@ -30,7 +30,7 @@ extern "C" { ...@@ -30,7 +30,7 @@ extern "C" {
#include "libpq-fe.h" #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: ...@@ -88,6 +88,8 @@ public:
short FieldSize(const char *field_name); short FieldSize(const char *field_name);
const char* GetValue(int tup_num, int field_num); const char* GetValue(int tup_num, int field_num);
const char* GetValue(int tup_num, const char *field_name); 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, int field_num);
int GetLength(int tup_num, const char* field_name); int GetLength(int tup_num, const char* field_name);
void DisplayTuples(FILE *out = 0, int fillAlign = 1, void DisplayTuples(FILE *out = 0, int fillAlign = 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment