blob: 83c3087a0baa82aa82d5f53879f40992f30a38e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "libpq-fe.h"
extern const char *progname;
extern char *connection_string;
extern char *dbhost;
extern char *dbuser;
extern char *dbport;
extern int dbgetpassword;
/* Connection kept global so we can disconnect easily */
extern PGconn *conn;
extern PGconn *GetConnection(void);
|