proto.h 325 B

123456789101112131415
  1. /* error.c */
  2. void init_error(void);
  3. /* cursor.c */
  4. cursor *alloc_cursor(void);
  5. void free_cursor(cursor *);
  6. /* describe.c */
  7. int describe_table(PGresult *, dbTable **, cursor *);
  8. int get_column_info(PGresult *, int, int *, int *, int *, int *);
  9. int get_gpg_type(int);
  10. /* parse.c */
  11. int parse_conn(const char *, PGCONN *);