/*------------------------------------------------------------------------- * * libpq-myfe.h * * * Christoph Haller, D.T.I. * * Created Sep 2001 * *------------------------------------------------------------------------- */ #include "libpq-fe.h" #ifndef LIBPQ_MYFE_H #define LIBPQ_MYFE_H int PGSQL_command(PGconn *thisconnec, PGresult *thisresul, char *thiscommand); int PGSQL_process(PGconn *thisconnec, PGresult **thisresul, char *thiscommand); int PGSQL_begin(PGconn *thisconnec); int PGSQL_declare_cursor1(PGconn *thisconnec, PGresult *thisresul, char *thisselect); int PGSQL_fetch_all1(PGconn *thisconnec, PGresult **thisresul); int PGSQL_close_cursor1(PGconn *thisconnec, PGresult *thisresul); int PGSQL_commit(PGconn *thisconnec); int PGSQL_rollback(PGconn *thisconnec); int PGSQL_declare_cursor2(PGconn *thisconnec, PGresult *thisresul, char *thisselect); int PGSQL_fetch_all2(PGconn *thisconnec, PGresult **thisresul); int PGSQL_close_cursor2(PGconn *thisconnec, PGresult *thisresul); int PGSQL_declare_bincsr1(PGconn *thisconnec, PGresult *thisresul, char *thisselect); int PGSQL_fetch_binall1(PGconn *thisconnec, PGresult **thisresul); int PGSQL_close_bincsr1(PGconn *thisconnec, PGresult *thisresul); int PGSQL_binprocess(PGconn *thisconnec, PGresult **thisresul, char *thiscommand); #endif /* LIBPQ_MYFE_H */