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/pginterface.h

15 lines
239 B

/*
* pglib.h
*
*/
PGresult *doquery(char *query);
PGconn *connectdb();
void disconnectdb();
int fetch(void *param, ...);
30 years ago
int fetchwithnulls(void *param, ...);
void on_error_continue();
void on_error_stop();
#define END_OF_TUPLES (-1)