Updated version.
authorBruce Momjian
Thu, 26 Sep 1996 14:07:07 +0000 (14:07 +0000)
committerBruce Momjian
Thu, 26 Sep 1996 14:07:07 +0000 (14:07 +0000)
contrib/pginterface/README
contrib/pginterface/pgnulltest.c
contrib/pginterface/pgwordcount.c

index 7a82b36305c4ae812e667a2af7402c9797eba2b3..c52b5d1190a19db53cb3c25201d6cc0accc5f0ab 100644 (file)
@@ -1,6 +1,6 @@
 
 
-                     Pginterface 1.0
+                     Pginterface 2.0
 
 Attached is a copy of the Postgres support routines I wrote to allow me
 to more cleanly interface to the libpg library, more like a 4gl SQL
@@ -10,7 +10,7 @@ It has several features that may be useful for others:
 
 I have simplified the C code that calls libpq by wrapping all the
 functionality of libpq in calls to connectdb(), doquery(), fetch(),
-fetchisnull() and disconnectdb().  Each call returns a structure or
+fetchwithnulls() and disconnectdb().  Each call returns a structure or
 value, so if you need to do more work with the result, you can.  Also, I
 have a global variable that allows you to disable the error checking I
 have added to the doquery() routine.
index b99292113d8c999af732cf8b5f561ef69b4b1c36..283106f726dbd0d9d98847ae07cdbe1ac4931fad 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * insert.c
+ * pgnulltest.c
  *
 */
 
index 4e36cc0423dc9bc9e1c80d6eb5c43f2299149507..437f64a064a8a2cfa77aa5ad5d62d78d95166446 100644 (file)
@@ -6,8 +6,8 @@
 #include 
 #include 
 #include 
-#include 
 #include "halt.h"
+#include 
 #include "pginterface.h"
 
 int main(int argc, char **argv)
@@ -70,4 +70,3 @@ int main(int argc, char **argv)
    return 0;
 }
 
-