Skip to content

Commit d0741fb

Browse files
committed
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
1 parent ee8d39a commit d0741fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/interfaces/libpq++/libpq++.H

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extern "C" {
3030
#include "libpq-fe.h"
3131
}
3232

33-
static char rcsid[] = "$Id: libpq++.H,v 1.4 1999/05/23 01:03:58 momjian Exp $";
33+
static char rcsid[] = "$Id: libpq++.H,v 1.5 1999/10/04 15:17:06 momjian Exp $";
3434

3535

3636
// ****************************************************************
@@ -88,6 +88,8 @@ public:
8888
short FieldSize(const char *field_name);
8989
const char* GetValue(int tup_num, int field_num);
9090
const char* GetValue(int tup_num, const char *field_name);
91+
int GetIsNull(int tup_num, int field_num);
92+
int GetIsNull(int tup_num, const char* field_name);
9193
int GetLength(int tup_num, int field_num);
9294
int GetLength(int tup_num, const char* field_name);
9395
void DisplayTuples(FILE *out = 0, int fillAlign = 1,

0 commit comments

Comments
 (0)