mysql.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /* defines for libmysql */
  4. #ifndef _mysql_h
  5. #define _mysql_h
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #ifndef _global_h /* If not standard header */
  10. #include <sys/types.h>
  11. typedef char my_bool;
  12. #if !defined(__WIN32__) && !defined(WIN32)
  13. #define STDCALL
  14. typedef char byte;
  15. #else
  16. #define STDCALL __stdcall
  17. #endif
  18. typedef char * gptr;
  19. #ifndef ST_USED_MEM_DEFINED
  20. #define ST_USED_MEM_DEFINED
  21. typedef struct st_used_mem { /* struct for once_alloc */
  22.   struct st_used_mem *next; /* Next block in use */
  23.   unsigned int left; /* memory left in block  */
  24.   unsigned int size; /* size of block */
  25. } USED_MEM;
  26. typedef struct st_mem_root {
  27.   USED_MEM *free;
  28.   USED_MEM *used;
  29.   unsigned int min_malloc;
  30.   unsigned int block_size;
  31.   void (*error_handler)(void);
  32. } MEM_ROOT;
  33. #endif
  34. #ifndef Socket_defined
  35. #ifdef __WIN32__
  36. #define Socket SOCKET
  37. #else
  38. typedef int Socket;
  39. #endif
  40. #endif
  41. #endif
  42. #include "mysql_com.h"
  43. #include "mysql_version.h"
  44. extern unsigned int mysql_port;
  45. extern char *mysql_unix_port;
  46. #define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG)
  47. #define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG)
  48. #define IS_BLOB(n) ((n) & BLOB_FLAG)
  49. #define IS_NUM(t) ((t) <= FIELD_TYPE_INT24 || (t) == FIELD_TYPE_YEAR)
  50. typedef struct st_mysql_field {
  51.   char *name; /* Name of column */
  52.   char *table; /* Table of column if column was a field */
  53.   char *def; /* Default value (set by mysql_list_fields) */
  54.   enum enum_field_types type; /* Type of field. Se mysql_com.h for types */
  55.   unsigned int length; /* Width of column */
  56.   unsigned int max_length; /* Max width of selected set */
  57.   unsigned int flags; /* Div flags */
  58.   unsigned int decimals; /* Number of decimals in field */
  59. } MYSQL_FIELD;
  60. typedef byte **MYSQL_ROW; /* return data as array of strings */
  61. typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */
  62. typedef struct st_mysql_rows {
  63.   struct st_mysql_rows *next; /* list of rows */
  64.   MYSQL_ROW data;
  65. } MYSQL_ROWS;
  66. typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; /* offset to current row */
  67. typedef struct st_mysql_data {
  68.   unsigned int rows;
  69.   unsigned int fields;
  70.   MYSQL_ROWS *data;
  71.   MEM_ROOT alloc;
  72. } MYSQL_DATA;
  73. enum mysql_status { MYSQL_STATUS_READY,MYSQL_STATUS_GET_RESULT,
  74.     MYSQL_STATUS_USE_RESULT};
  75. typedef struct st_mysql {
  76.   NET net; /* Communication parameters */
  77.   char *host,*user,*passwd,*unix_socket,*server_version,*host_info,
  78. *info,*db;
  79.   unsigned int port,client_flag,server_capabilities;
  80.   unsigned int protocol_version;
  81.   unsigned int field_count;
  82.   unsigned long thread_id; /* Id for connection in server */
  83.   unsigned long affected_rows;
  84.   unsigned long insert_id; /* id if insert on table with NEXTNR */
  85.   unsigned long extra_info; /* Used by mysqlshow */
  86.   enum mysql_status status;
  87.   MYSQL_FIELD *fields;
  88.   MEM_ROOT field_alloc;
  89.   my_bool free_me; /* If free in mysql_close */
  90.   my_bool reconnect; /* set to 1 if automatic reconnect */
  91. } MYSQL;
  92. typedef struct st_mysql_res {
  93.   unsigned long row_count;
  94.   unsigned int field_count, current_field;
  95.   MYSQL_FIELD *fields;
  96.   MYSQL_DATA *data;
  97.   MYSQL_ROWS *data_cursor;
  98.   MEM_ROOT field_alloc;
  99.   MYSQL_ROW row; /* If unbuffered read */
  100.   MYSQL_ROW current_row; /* buffer to current row */
  101.   unsigned int *lengths; /* column lengths of current row */
  102.   MYSQL *handle; /* for unbuffered reads */
  103.   my_bool eof; /* Used my mysql_fetch_row */
  104. } MYSQL_RES;
  105. #define mysql_num_rows(res) (res)->row_count
  106. #define mysql_num_fields(res) (res)->field_count
  107. #define mysql_eof(res) (res)->eof
  108. #define mysql_fetch_field_direct(res,fieldnr) ((res)->fields[fieldnr])
  109. #define mysql_fetch_fields(res) (res)->fields
  110. #define mysql_row_tell(res) (res)->data_cursor
  111. #define mysql_field_tell(res) (res)->current_field
  112. #define mysql_affected_rows(mysql) (mysql)->affected_rows
  113. #define mysql_insert_id(mysql) (mysql)->insert_id
  114. #define mysql_error(mysql) (mysql)->net.last_error
  115. #define mysql_errno(mysql) (mysql)->net.last_errno
  116. #define mysql_info(mysql) (mysql)->info
  117. #define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT)
  118. #define mysql_thread_id(mysql) (mysql)->thread_id
  119. MYSQL * STDCALL mysql_connect(MYSQL *mysql, const char *host,
  120.       const char *user, const char *passwd);
  121. #if MYSQL_VERSION_ID >= 32200
  122. MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
  123.    const char *user,
  124.    const char *passwd,
  125.    const char *db,
  126.    unsigned int port,
  127.    const char *unix_socket,
  128.    unsigned int clientflag);
  129. #else
  130. MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
  131.    const char *user,
  132.    const char *passwd,
  133.    unsigned int port,
  134.    const char *unix_socket,
  135.    unsigned int clientflag);
  136. #endif
  137. void STDCALL mysql_close(MYSQL *sock);
  138. int STDCALL mysql_select_db(MYSQL *mysql, const char *db);
  139. int STDCALL mysql_query(MYSQL *mysql, const char *q);
  140. int STDCALL mysql_real_query(MYSQL *mysql, const char *q,
  141. unsigned int length);
  142. int STDCALL mysql_create_db(MYSQL *mysql, const char *DB);
  143. int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB);
  144. int STDCALL mysql_shutdown(MYSQL *mysql);
  145. int STDCALL mysql_dump_debug_info(MYSQL *mysql);
  146. int STDCALL mysql_refresh(MYSQL *mysql,
  147.      unsigned int refresh_options);
  148. int STDCALL mysql_kill(MYSQL *mysql,unsigned long pid);
  149. char * STDCALL mysql_stat(MYSQL *mysql);
  150. char * STDCALL mysql_get_server_info(MYSQL *mysql);
  151. char * STDCALL mysql_get_client_info(void);
  152. char * STDCALL mysql_get_host_info(MYSQL *mysql);
  153. unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql);
  154. MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild);
  155. MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild);
  156. MYSQL_RES * STDCALL mysql_list_fields(MYSQL *mysql, const char *table,
  157.  const char *wild);
  158. MYSQL_RES * STDCALL mysql_list_processes(MYSQL *mysql);
  159. MYSQL_RES * STDCALL mysql_store_result(MYSQL *mysql);
  160. MYSQL_RES * STDCALL mysql_use_result(MYSQL *mysql);
  161. void STDCALL mysql_free_result(MYSQL_RES *result);
  162. void STDCALL mysql_data_seek(MYSQL_RES *mysql,unsigned int offset);
  163. MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *mysql, MYSQL_ROW_OFFSET);
  164. MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *mysql,
  165.    MYSQL_FIELD_OFFSET offset);
  166. MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *mysql);
  167. unsigned int * STDCALL mysql_fetch_lengths(MYSQL_RES *mysql);
  168. MYSQL_FIELD * STDCALL mysql_fetch_field(MYSQL_RES *handle);
  169. unsigned int STDCALL mysql_escape_string(char *to,const char *from,
  170.     unsigned int from_length);
  171. void STDCALL mysql_debug(char *debug);
  172. /* new api functions */
  173. #define HAVE_MYSQL_REAL_CONNECT
  174. #ifdef __cplusplus
  175. }
  176. #endif
  177. #endif