#include <sql.h>
#include <sqlext.h>
#include <sqltypes.h>
Go to the source code of this file.
Typedefs | |
typedef odbc_obj | odbc_obj |
Enumerations | |
enum | odbc_status { ODBC_SUCCESS = 0, ODBC_FAIL = -1 } |
Functions | |
odbc_obj * | new_odbc_obj (char *name, char *dsn, char *username, char *password) |
odbc_status | odbc_obj_connect (odbc_obj *obj) |
odbc_status | odbc_obj_disconnect (odbc_obj *obj) |
void | destroy_obdc_obj (odbc_obj **obj) |
int | register_odbc_obj (char *name, odbc_obj *obj) |
odbc_obj * | fetch_odbc_obj (char *name) |
int | odbc_dump_fd (int fd, odbc_obj *obj) |
|
Definition at line 22 of file res_odbc.h. |
|
Definition at line 24 of file res_odbc.h. 00024 { ODBC_SUCCESS=0,ODBC_FAIL=-1} odbc_status;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|