diff --git a/contrib/pginterface/README b/contrib/pginterface/README index 7a82b36305..c52b5d1190 100644 --- a/contrib/pginterface/README +++ b/contrib/pginterface/README @@ -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. diff --git a/contrib/pginterface/pgnulltest.c b/contrib/pginterface/pgnulltest.c index b99292113d..283106f726 100644 --- a/contrib/pginterface/pgnulltest.c +++ b/contrib/pginterface/pgnulltest.c @@ -1,5 +1,5 @@ /* - * insert.c + * pgnulltest.c * */ diff --git a/contrib/pginterface/pgwordcount.c b/contrib/pginterface/pgwordcount.c index 4e36cc0423..437f64a064 100644 --- a/contrib/pginterface/pgwordcount.c +++ b/contrib/pginterface/pgwordcount.c @@ -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; } -