proto.h 238 B

1234567891011121314
  1. /* error.c */
  2. void init_error();
  3. /* connect.c */
  4. int open_connection();
  5. int close_connection();
  6. /* cursor.c */
  7. cursor *alloc_cursor();
  8. void free_cursor(cursor * c);
  9. /* describe.c */
  10. int describe_table(SQLHSTMT stmt, dbTable ** table);