proto.h 406 B

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