1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Newer version of Bruce's pginterface library...

This commit is contained in:
Marc G. Fournier
1996-09-19 20:19:05 +00:00
parent ee9b8016c7
commit 715c6b6d25
9 changed files with 667 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/*
* pglib.h
*
*/
PGresult *doquery(char *query);
PGconn *connectdb();
void disconnectdb();
int fetch(void *param, ...);
int fetchisnull(void *param, ...);
void on_error_continue();
void on_error_stop();
#define END_OF_TUPLES (-1)