mysql.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:10k
源码类别:

MySQL数据库

开发平台:

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