mysql.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:11k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* defines for the libmysql library */
  18. #ifndef _mysql_h
  19. #define _mysql_h
  20. #ifdef __CYGWIN__     /* CYGWIN implements a UNIX API */
  21. #undef WIN
  22. #undef _WIN
  23. #undef _WIN32
  24. #undef _WIN64
  25. #undef __WIN__
  26. #endif
  27. #ifndef MYSQL_SERVER
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. #endif
  32.   
  33. #ifndef _global_h /* If not standard header */
  34. #include <sys/types.h>
  35. #ifdef __LCC__
  36. #include <winsock.h> /* For windows */
  37. #endif
  38. typedef char my_bool;
  39. #if (defined(_WIN32) || defined(_WIN64)) && !defined(__WIN__)
  40. #define __WIN__
  41. #endif
  42. #if !defined(__WIN__)
  43. #define STDCALL
  44. #else
  45. #define STDCALL __stdcall
  46. #endif
  47. typedef char * gptr;
  48. #ifndef ST_USED_MEM_DEFINED
  49. #define ST_USED_MEM_DEFINED
  50. typedef struct st_used_mem { /* struct for once_alloc */
  51.   struct st_used_mem *next; /* Next block in use */
  52.   unsigned int left; /* memory left in block  */
  53.   unsigned int size; /* size of block */
  54. } USED_MEM;
  55. typedef struct st_mem_root {
  56.   USED_MEM *free;
  57.   USED_MEM *used;
  58.   USED_MEM *pre_alloc;
  59.   unsigned int min_malloc;
  60.   unsigned int block_size;
  61.   void (*error_handler)(void);
  62. } MEM_ROOT;
  63. #endif
  64. #ifndef my_socket_defined
  65. #ifdef __WIN__
  66. #define my_socket SOCKET
  67. #else
  68. typedef int my_socket;
  69. #endif
  70. #endif
  71. #endif
  72. #include "mysql_com.h"
  73. #include "mysql_version.h"
  74. extern unsigned int mysql_port;
  75. extern char *mysql_unix_port;
  76. #define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG)
  77. #define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG)
  78. #define IS_BLOB(n) ((n) & BLOB_FLAG)
  79. #define IS_NUM(t) ((t) <= FIELD_TYPE_INT24 || (t) == FIELD_TYPE_YEAR)
  80. #define IS_NUM_FIELD(f)  ((f)->flags & NUM_FLAG)
  81. #define INTERNAL_NUM_FIELD(f) (((f)->type <= FIELD_TYPE_INT24 && ((f)->type != FIELD_TYPE_TIMESTAMP || (f)->length == 14 || (f)->length == 8)) || (f)->type == FIELD_TYPE_YEAR)
  82. typedef struct st_mysql_field {
  83.   char *name; /* Name of column */
  84.   char *table; /* Table of column if column was a field */
  85.   char *def; /* Default value (set by mysql_list_fields) */
  86.   enum enum_field_types type; /* Type of field. Se mysql_com.h for types */
  87.   unsigned int length; /* Width of column */
  88.   unsigned int max_length; /* Max width of selected set */
  89.   unsigned int flags; /* Div flags */
  90.   unsigned int decimals; /* Number of decimals in field */
  91. } MYSQL_FIELD;
  92. typedef char **MYSQL_ROW; /* return data as array of strings */
  93. typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */
  94. #if defined(NO_CLIENT_LONG_LONG)
  95. typedef unsigned long my_ulonglong;
  96. #elif defined (__WIN__)
  97. typedef unsigned __int64 my_ulonglong;
  98. #else
  99. typedef unsigned long long my_ulonglong;
  100. #endif
  101. #define MYSQL_COUNT_ERROR (~(my_ulonglong) 0)
  102. typedef struct st_mysql_rows {
  103.   struct st_mysql_rows *next; /* list of rows */
  104.   MYSQL_ROW data;
  105. } MYSQL_ROWS;
  106. typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; /* offset to current row */
  107. typedef struct st_mysql_data {
  108.   my_ulonglong rows;
  109.   unsigned int fields;
  110.   MYSQL_ROWS *data;
  111.   MEM_ROOT alloc;
  112. } MYSQL_DATA;
  113. struct st_mysql_options {
  114.   unsigned int connect_timeout,client_flag;
  115.   my_bool compress,named_pipe;
  116.   unsigned int port;
  117.   char *host,*init_command,*user,*password,*unix_socket,*db;
  118.   char *my_cnf_file,*my_cnf_group, *charset_dir, *charset_name;
  119.   my_bool use_ssl; /* if to use SSL or not */
  120.   char *ssl_key; /* PEM key file */
  121.   char *ssl_cert; /* PEM cert file */
  122.   char *ssl_ca; /* PEM CA file */
  123.   char *ssl_capath; /* PEM directory of CA-s? */
  124. };
  125. enum mysql_option { MYSQL_OPT_CONNECT_TIMEOUT, MYSQL_OPT_COMPRESS,
  126.     MYSQL_OPT_NAMED_PIPE, MYSQL_INIT_COMMAND,
  127.     MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP,
  128.     MYSQL_SET_CHARSET_DIR, MYSQL_SET_CHARSET_NAME,
  129.     MYSQL_OPT_LOCAL_INFILE};
  130. enum mysql_status { MYSQL_STATUS_READY,MYSQL_STATUS_GET_RESULT,
  131.     MYSQL_STATUS_USE_RESULT};
  132. typedef struct st_mysql {
  133.   NET net; /* Communication parameters */
  134.   gptr connector_fd; /* ConnectorFd for SSL */
  135.   char *host,*user,*passwd,*unix_socket,*server_version,*host_info,
  136. *info,*db;
  137.   unsigned int port,client_flag,server_capabilities;
  138.   unsigned int protocol_version;
  139.   unsigned int field_count;
  140.   unsigned int  server_status;
  141.   unsigned long thread_id; /* Id for connection in server */
  142.   my_ulonglong affected_rows;
  143.   my_ulonglong insert_id; /* id if insert on table with NEXTNR */
  144.   my_ulonglong extra_info; /* Used by mysqlshow */
  145.   unsigned long packet_length;
  146.   enum mysql_status status;
  147.   MYSQL_FIELD *fields;
  148.   MEM_ROOT field_alloc;
  149.   my_bool free_me; /* If free in mysql_close */
  150.   my_bool reconnect; /* set to 1 if automatic reconnect */
  151.   struct st_mysql_options options;
  152.   char         scramble_buff[9];
  153.   struct charset_info_st *charset;
  154.   unsigned int  server_language;
  155. } MYSQL;
  156. typedef struct st_mysql_res {
  157.   my_ulonglong row_count;
  158.   unsigned int field_count, current_field;
  159.   MYSQL_FIELD *fields;
  160.   MYSQL_DATA *data;
  161.   MYSQL_ROWS *data_cursor;
  162.   MEM_ROOT field_alloc;
  163.   MYSQL_ROW row; /* If unbuffered read */
  164.   MYSQL_ROW current_row; /* buffer to current row */
  165.   unsigned long *lengths; /* column lengths of current row */
  166.   MYSQL *handle; /* for unbuffered reads */
  167.   my_bool eof; /* Used my mysql_fetch_row */
  168. } MYSQL_RES;
  169. /* Functions to get information from the MYSQL and MYSQL_RES structures */
  170. /* Should definitely be used if one uses shared libraries */
  171. my_ulonglong STDCALL mysql_num_rows(MYSQL_RES *res);
  172. unsigned int STDCALL mysql_num_fields(MYSQL_RES *res);
  173. my_bool STDCALL mysql_eof(MYSQL_RES *res);
  174. MYSQL_FIELD *STDCALL mysql_fetch_field_direct(MYSQL_RES *res,
  175.       unsigned int fieldnr);
  176. MYSQL_FIELD * STDCALL mysql_fetch_fields(MYSQL_RES *res);
  177. MYSQL_ROWS * STDCALL mysql_row_tell(MYSQL_RES *res);
  178. unsigned int STDCALL mysql_field_tell(MYSQL_RES *res);
  179. unsigned int STDCALL mysql_field_count(MYSQL *mysql);
  180. my_ulonglong STDCALL mysql_affected_rows(MYSQL *mysql);
  181. my_ulonglong STDCALL mysql_insert_id(MYSQL *mysql);
  182. unsigned int STDCALL mysql_errno(MYSQL *mysql);
  183. char * STDCALL mysql_error(MYSQL *mysql);
  184. char * STDCALL mysql_info(MYSQL *mysql);
  185. unsigned long STDCALL mysql_thread_id(MYSQL *mysql);
  186. const char * STDCALL mysql_character_set_name(MYSQL *mysql);
  187. MYSQL * STDCALL mysql_init(MYSQL *mysql);
  188. #ifdef HAVE_OPENSSL
  189. int STDCALL mysql_ssl_set(MYSQL *mysql, const char *key,
  190.       const char *cert, const char *ca,
  191.       const char *capath);
  192. char * STDCALL mysql_ssl_cipher(MYSQL *mysql);
  193. int STDCALL mysql_ssl_clear(MYSQL *mysql);
  194. #endif /* HAVE_OPENSSL */
  195. MYSQL * STDCALL mysql_connect(MYSQL *mysql, const char *host,
  196.       const char *user, const char *passwd);
  197. my_bool STDCALL mysql_change_user(MYSQL *mysql, const char *user, 
  198.   const char *passwd, const char *db);
  199. #if MYSQL_VERSION_ID >= 32200
  200. MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
  201.    const char *user,
  202.    const char *passwd,
  203.    const char *db,
  204.    unsigned int port,
  205.    const char *unix_socket,
  206.    unsigned int clientflag);
  207. #else
  208. MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
  209.    const char *user,
  210.    const char *passwd,
  211.    unsigned int port,
  212.    const char *unix_socket,
  213.    unsigned int clientflag);
  214. #endif
  215. void STDCALL mysql_close(MYSQL *sock);
  216. int STDCALL mysql_select_db(MYSQL *mysql, const char *db);
  217. int STDCALL mysql_query(MYSQL *mysql, const char *q);
  218. int STDCALL mysql_send_query(MYSQL *mysql, const char *q,
  219.  unsigned int length);
  220. int STDCALL mysql_read_query_result(MYSQL *mysql);
  221. int STDCALL mysql_real_query(MYSQL *mysql, const char *q,
  222. unsigned int length);
  223. int STDCALL mysql_create_db(MYSQL *mysql, const char *DB);
  224. int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB);
  225. int STDCALL mysql_shutdown(MYSQL *mysql);
  226. int STDCALL mysql_dump_debug_info(MYSQL *mysql);
  227. int STDCALL mysql_refresh(MYSQL *mysql,
  228.      unsigned int refresh_options);
  229. int STDCALL mysql_kill(MYSQL *mysql,unsigned long pid);
  230. int STDCALL mysql_ping(MYSQL *mysql);
  231. char * STDCALL mysql_stat(MYSQL *mysql);
  232. char * STDCALL mysql_get_server_info(MYSQL *mysql);
  233. char * STDCALL mysql_get_client_info(void);
  234. char * STDCALL mysql_get_host_info(MYSQL *mysql);
  235. unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql);
  236. MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild);
  237. MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild);
  238. MYSQL_RES * STDCALL mysql_list_fields(MYSQL *mysql, const char *table,
  239.  const char *wild);
  240. MYSQL_RES * STDCALL mysql_list_processes(MYSQL *mysql);
  241. MYSQL_RES * STDCALL mysql_store_result(MYSQL *mysql);
  242. MYSQL_RES * STDCALL mysql_use_result(MYSQL *mysql);
  243. int STDCALL mysql_options(MYSQL *mysql,enum mysql_option option,
  244.       const char *arg);
  245. void STDCALL mysql_free_result(MYSQL_RES *result);
  246. void STDCALL mysql_data_seek(MYSQL_RES *result,
  247. my_ulonglong offset);
  248. MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *result, MYSQL_ROW_OFFSET);
  249. MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *result,
  250.    MYSQL_FIELD_OFFSET offset);
  251. MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *result);
  252. unsigned long * STDCALL mysql_fetch_lengths(MYSQL_RES *result);
  253. MYSQL_FIELD * STDCALL mysql_fetch_field(MYSQL_RES *result);
  254. unsigned long STDCALL mysql_escape_string(char *to,const char *from,
  255.     unsigned long from_length);
  256. unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql,
  257.        char *to,const char *from,
  258.        unsigned long length);
  259. void STDCALL mysql_debug(const char *debug);
  260. char * STDCALL mysql_odbc_escape_string(MYSQL *mysql,
  261.  char *to,
  262.  unsigned long to_length,
  263.  const char *from,
  264.  unsigned long from_length,
  265.  void *param,
  266.  char *
  267.  (*extend_buffer)
  268.  (void *, char *to,
  269.   unsigned long *length));
  270. void  STDCALL myodbc_remove_escape(MYSQL *mysql,char *name);
  271. unsigned int STDCALL mysql_thread_safe(void);
  272.   
  273. #define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT)
  274. /* new api functions */
  275. #define HAVE_MYSQL_REAL_CONNECT
  276. #ifndef MYSQL_SERVER  
  277. #ifdef __cplusplus
  278. }
  279. #endif
  280. #endif
  281. #endif