mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
15 lines
248 B
C
15 lines
248 B
C
/*
|
|
* pglib.h
|
|
*
|
|
*/
|
|
|
|
PGresult *doquery(char *query);
|
|
PGconn *connectdb();
|
|
void disconnectdb();
|
|
int fetch(void *param,...);
|
|
int fetchwithnulls(void *param,...);
|
|
void on_error_continue();
|
|
void on_error_stop();
|
|
|
|
#define END_OF_TUPLES (-1)
|