aboutsummaryrefslogtreecommitdiff
path: root/contrib/pginterface/pginterface.h
blob: 6e074ff234954e16269ffb230bb29887dfc1fb7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * pglib.h
 *
*/

PGresult *doquery(char *query);
PGconn 	*connectdb();
void	disconnectdb();
int		fetch(void *param, ...);
void	on_error_continue();
void	on_error_stop();

#define END_OF_TUPLES	(-1)