You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib/pginterface
Bruce Momjian d3cf6f98c7 Remove .orig files. 28 years ago
..
Makefile Newer version of Bruce's pginterface library... 29 years ago
README Removed un-needed signal suff from pginterface. 28 years ago
halt.c Used modified version of indent that understands over 100 typedefs. 28 years ago
halt.h Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting. 28 years ago
pginsert.c Removed un-needed signal suff from pginterface. 28 years ago
pginterface.c Removed un-needed signal suff from pginterface. 28 years ago
pginterface.h Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting. 28 years ago
pgnulltest.c Removed un-needed signal suff from pginterface. 28 years ago
pgwordcount.c Removed un-needed signal suff from pginterface. 28 years ago

README



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
interface.

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(),
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.

I have added a function called fetch(), which allows you to pass
pointers as parameters, and on return the variables are filled with the
data from the binary cursor you opened. These binary cursors are not
useful if you are running the query engine on a system with a different
architecture than the database server. If you pass a NULL pointer, the
column is skipped, and you can use libpq to handle it as you wish.

There is a demo program called pginsert that demonstrates how the
library can be used.

You can create a library of pginterface.c and halt.c, and just include
pginterface.h in your source code.

I am willing to maintain this if people find problems or want additional
functionality.

Bruce Momjian (root@candle.pha.pa.us)