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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef _mysql_h
  14. #define _mysql_h
  15. #ifdef __CYGWIN__     /* CYGWIN implements a UNIX API */
  16. #undef WIN
  17. #undef _WIN
  18. #undef _WIN32
  19. #undef _WIN64
  20. #undef __WIN__
  21. #endif
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. #ifndef _global_h /* If not standard header */
  26. #include <sys/types.h>
  27. #ifdef __LCC__
  28. #include <winsock.h> /* For windows */
  29. #endif
  30. typedef char my_bool;
  31. #if (defined(_WIN32) || defined(_WIN64)) && !defined(__WIN__)
  32. #define __WIN__
  33. #endif
  34. #if !defined(__WIN__)
  35. #define STDCALL
  36. #else
  37. #define STDCALL __stdcall
  38. #endif
  39. typedef char * gptr;
  40. #ifndef my_socket_defined
  41. #ifdef __WIN__
  42. #define my_socket SOCKET
  43. #else
  44. typedef int my_socket;
  45. #endif /* __WIN__ */
  46. #endif /* my_socket_defined */
  47. #endif /* _global_h */
  48. #include "mysql_com.h"
  49. #include "mysql_time.h"
  50. #include "mysql_version.h"
  51. #include "typelib.h"
  52. #include "my_list.h" /* for LISTs used in 'MYSQL' and 'MYSQL_STMT' */
  53. extern unsigned int mysql_port;
  54. extern char *mysql_unix_port;
  55. #define CLIENT_NET_READ_TIMEOUT 365*24*3600 /* Timeout on read */
  56. #define CLIENT_NET_WRITE_TIMEOUT 365*24*3600 /* Timeout on write */
  57. #ifdef __NETWARE__
  58. #pragma pack(push, 8) /* 8 byte alignment */
  59. #endif
  60. #define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG)
  61. #define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG)
  62. #define IS_BLOB(n) ((n) & BLOB_FLAG)
  63. #define IS_NUM(t) ((t) <= FIELD_TYPE_INT24 || (t) == FIELD_TYPE_YEAR)
  64. #define IS_NUM_FIELD(f)  ((f)->flags & NUM_FLAG)
  65. #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)
  66. typedef struct st_mysql_field {
  67.   char *name;                 /* Name of column */
  68.   char *org_name;             /* Original column name, if an alias */ 
  69.   char *table;                /* Table of column if column was a field */
  70.   char *org_table;            /* Org table name, if table was an alias */
  71.   char *db;                   /* Database for table */
  72.   char *catalog;       /* Catalog for table */
  73.   char *def;                  /* Default value (set by mysql_list_fields) */
  74.   unsigned long length;       /* Width of column (create length) */
  75.   unsigned long max_length;   /* Max width for selected set */
  76.   unsigned int name_length;
  77.   unsigned int org_name_length;
  78.   unsigned int table_length;
  79.   unsigned int org_table_length;
  80.   unsigned int db_length;
  81.   unsigned int catalog_length;
  82.   unsigned int def_length;
  83.   unsigned int flags;         /* Div flags */
  84.   unsigned int decimals;      /* Number of decimals in field */
  85.   unsigned int charsetnr;     /* Character set */
  86.   enum enum_field_types type; /* Type of field. See mysql_com.h for types */
  87. } MYSQL_FIELD;
  88. typedef char **MYSQL_ROW; /* return data as array of strings */
  89. typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */
  90. #ifndef _global_h
  91. #if defined(NO_CLIENT_LONG_LONG)
  92. typedef unsigned long my_ulonglong;
  93. #elif defined (__WIN__)
  94. typedef unsigned __int64 my_ulonglong;
  95. #else
  96. typedef unsigned long long my_ulonglong;
  97. #endif
  98. #endif
  99. #define MYSQL_COUNT_ERROR (~(my_ulonglong) 0)
  100. typedef struct st_mysql_rows {
  101.   struct st_mysql_rows *next; /* list of rows */
  102.   MYSQL_ROW data;
  103.   unsigned long length;
  104. } MYSQL_ROWS;
  105. typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; /* offset to current row */
  106. #include "my_alloc.h"
  107. typedef struct st_mysql_data {
  108.   my_ulonglong rows;
  109.   unsigned int fields;
  110.   MYSQL_ROWS *data;
  111.   MEM_ROOT alloc;
  112. #if !defined(CHECK_EMBEDDED_DIFFERENCES) || defined(EMBEDDED_LIBRARY)
  113.   MYSQL_ROWS **prev_ptr;
  114. #endif
  115. } MYSQL_DATA;
  116. enum mysql_option 
  117. {
  118.   MYSQL_OPT_CONNECT_TIMEOUT, MYSQL_OPT_COMPRESS, MYSQL_OPT_NAMED_PIPE,
  119.   MYSQL_INIT_COMMAND, MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP,
  120.   MYSQL_SET_CHARSET_DIR, MYSQL_SET_CHARSET_NAME, MYSQL_OPT_LOCAL_INFILE,
  121.   MYSQL_OPT_PROTOCOL, MYSQL_SHARED_MEMORY_BASE_NAME, MYSQL_OPT_READ_TIMEOUT,
  122.   MYSQL_OPT_WRITE_TIMEOUT, MYSQL_OPT_USE_RESULT,
  123.   MYSQL_OPT_USE_REMOTE_CONNECTION, MYSQL_OPT_USE_EMBEDDED_CONNECTION,
  124.   MYSQL_OPT_GUESS_CONNECTION, MYSQL_SET_CLIENT_IP, MYSQL_SECURE_AUTH
  125. };
  126. struct st_mysql_options {
  127.   unsigned int connect_timeout, read_timeout, write_timeout;
  128.   unsigned int port, protocol;
  129.   unsigned long client_flag;
  130.   char *host,*user,*password,*unix_socket,*db;
  131.   struct st_dynamic_array *init_commands;
  132.   char *my_cnf_file,*my_cnf_group, *charset_dir, *charset_name;
  133.   char *ssl_key; /* PEM key file */
  134.   char *ssl_cert; /* PEM cert file */
  135.   char *ssl_ca; /* PEM CA file */
  136.   char *ssl_capath; /* PEM directory of CA-s? */
  137.   char *ssl_cipher; /* cipher to use */
  138.   char *shared_memory_base_name;
  139.   unsigned long max_allowed_packet;
  140.   my_bool use_ssl; /* if to use SSL or not */
  141.   my_bool compress,named_pipe;
  142.  /*
  143.    On connect, find out the replication role of the server, and
  144.    establish connections to all the peers
  145.  */
  146.   my_bool rpl_probe;
  147.  /*
  148.    Each call to mysql_real_query() will parse it to tell if it is a read
  149.    or a write, and direct it to the slave or the master
  150.  */
  151.   my_bool rpl_parse;
  152.  /*
  153.    If set, never read from a master, only from slave, when doing
  154.    a read that is replication-aware
  155.  */
  156.   my_bool no_master_reads;
  157. #if !defined(CHECK_EMBEDDED_DIFFERENCES) || defined(EMBEDDED_LIBRARY)
  158.   my_bool separate_thread;
  159. #endif
  160.   enum mysql_option methods_to_use;
  161.   char *client_ip;
  162.   /* Refuse client connecting to server if it uses old (pre-4.1.1) protocol */
  163.   my_bool secure_auth;
  164.   /* function pointers for local infile support */
  165.   int (*local_infile_init)(void **, const char *, void *);
  166.   int (*local_infile_read)(void *, char *, unsigned int);
  167.   void (*local_infile_end)(void *);
  168.   int (*local_infile_error)(void *, char *, unsigned int);
  169.   void *local_infile_userdata;
  170. };
  171. enum mysql_status 
  172. {
  173.   MYSQL_STATUS_READY,MYSQL_STATUS_GET_RESULT,MYSQL_STATUS_USE_RESULT
  174. };
  175. enum mysql_protocol_type 
  176. {
  177.   MYSQL_PROTOCOL_DEFAULT, MYSQL_PROTOCOL_TCP, MYSQL_PROTOCOL_SOCKET,
  178.   MYSQL_PROTOCOL_PIPE, MYSQL_PROTOCOL_MEMORY
  179. };
  180. /*
  181.   There are three types of queries - the ones that have to go to
  182.   the master, the ones that go to a slave, and the adminstrative
  183.   type which must happen on the pivot connectioin
  184. */
  185. enum mysql_rpl_type 
  186. {
  187.   MYSQL_RPL_MASTER, MYSQL_RPL_SLAVE, MYSQL_RPL_ADMIN
  188. };
  189. struct st_mysql_methods;
  190. typedef struct st_mysql
  191. {
  192.   NET net; /* Communication parameters */
  193.   gptr connector_fd; /* ConnectorFd for SSL */
  194.   char *host,*user,*passwd,*unix_socket,*server_version,*host_info,*info;
  195.   char          *db;
  196.   struct charset_info_st *charset;
  197.   MYSQL_FIELD *fields;
  198.   MEM_ROOT field_alloc;
  199.   my_ulonglong affected_rows;
  200.   my_ulonglong insert_id; /* id if insert on table with NEXTNR */
  201.   my_ulonglong extra_info; /* Used by mysqlshow */
  202.   unsigned long thread_id; /* Id for connection in server */
  203.   unsigned long packet_length;
  204.   unsigned int port;
  205.   unsigned long client_flag,server_capabilities;
  206.   unsigned int protocol_version;
  207.   unsigned int field_count;
  208.   unsigned int  server_status;
  209.   unsigned int  server_language;
  210.   unsigned int warning_count;
  211.   struct st_mysql_options options;
  212.   enum mysql_status status;
  213.   my_bool free_me; /* If free in mysql_close */
  214.   my_bool reconnect; /* set to 1 if automatic reconnect */
  215.   /* session-wide random string */
  216.   char         scramble[SCRAMBLE_LENGTH+1];
  217.  /*
  218.    Set if this is the original connection, not a master or a slave we have
  219.    added though mysql_rpl_probe() or mysql_set_master()/ mysql_add_slave()
  220.  */
  221.   my_bool rpl_pivot;
  222.   /*
  223.     Pointers to the master, and the next slave connections, points to
  224.     itself if lone connection.
  225.   */
  226.   struct st_mysql* master, *next_slave;
  227.   struct st_mysql* last_used_slave; /* needed for round-robin slave pick */
  228.  /* needed for send/read/store/use result to work correctly with replication */
  229.   struct st_mysql* last_used_con;
  230.   LIST  *stmts;                     /* list of all statements */
  231.   const struct st_mysql_methods *methods;
  232.   void *thd;
  233.   /*
  234.     Points to boolean flag in MYSQL_RES  or MYSQL_STMT. We set this flag 
  235.     from mysql_stmt_close if close had to cancel result set of this object.
  236.   */
  237.   my_bool *unbuffered_fetch_owner;
  238. } MYSQL;
  239. typedef struct st_mysql_res {
  240.   my_ulonglong row_count;
  241.   MYSQL_FIELD *fields;
  242.   MYSQL_DATA *data;
  243.   MYSQL_ROWS *data_cursor;
  244.   unsigned long *lengths; /* column lengths of current row */
  245.   MYSQL *handle; /* for unbuffered reads */
  246.   MEM_ROOT field_alloc;
  247.   unsigned int field_count, current_field;
  248.   MYSQL_ROW row; /* If unbuffered read */
  249.   MYSQL_ROW current_row; /* buffer to current row */
  250.   my_bool eof; /* Used by mysql_fetch_row */
  251.   /* mysql_stmt_close() had to cancel this result */
  252.   my_bool       unbuffered_fetch_cancelled;  
  253.   const struct st_mysql_methods *methods;
  254. } MYSQL_RES;
  255. #define MAX_MYSQL_MANAGER_ERR 256  
  256. #define MAX_MYSQL_MANAGER_MSG 256
  257. #define MANAGER_OK           200
  258. #define MANAGER_INFO         250
  259. #define MANAGER_ACCESS       401
  260. #define MANAGER_CLIENT_ERR   450
  261. #define MANAGER_INTERNAL_ERR 500
  262. #if !defined(MYSQL_SERVER) && !defined(MYSQL_CLIENT)
  263. #define MYSQL_CLIENT
  264. #endif
  265. typedef struct st_mysql_manager
  266. {
  267.   NET net;
  268.   char *host,*user,*passwd;
  269.   unsigned int port;
  270.   my_bool free_me;
  271.   my_bool eof;
  272.   int cmd_status;
  273.   int last_errno;
  274.   char* net_buf,*net_buf_pos,*net_data_end;
  275.   int net_buf_size;
  276.   char last_error[MAX_MYSQL_MANAGER_ERR];
  277. } MYSQL_MANAGER;
  278. typedef struct st_mysql_parameters
  279. {
  280.   unsigned long *p_max_allowed_packet;
  281.   unsigned long *p_net_buffer_length;
  282. } MYSQL_PARAMETERS;
  283. #if !defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY)
  284. #define max_allowed_packet (*mysql_get_parameters()->p_max_allowed_packet)
  285. #define net_buffer_length (*mysql_get_parameters()->p_net_buffer_length)
  286. #endif
  287. /*
  288.   Set up and bring down the server; to ensure that applications will
  289.   work when linked against either the standard client library or the
  290.   embedded server library, these functions should be called.
  291. */
  292. int STDCALL mysql_server_init(int argc, char **argv, char **groups);
  293. void STDCALL mysql_server_end(void);
  294. /*
  295.   mysql_server_init/end need to be called when using libmysqld or
  296.   libmysqlclient (exactly, mysql_server_init() is called by mysql_init() so
  297.   you don't need to call it explicitely; but you need to call
  298.   mysql_server_end() to free memory). The names are a bit misleading
  299.   (mysql_SERVER* to be used when using libmysqlCLIENT). So we add more general
  300.   names which suit well whether you're using libmysqld or libmysqlclient. We
  301.   intend to promote these aliases over the mysql_server* ones.
  302. */
  303. #define mysql_library_init mysql_server_init
  304. #define mysql_library_end mysql_server_end
  305. MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void);
  306. /*
  307.   Set up and bring down a thread; these function should be called
  308.   for each thread in an application which opens at least one MySQL
  309.   connection.  All uses of the connection(s) should be between these
  310.   function calls.
  311. */
  312. my_bool STDCALL mysql_thread_init(void);
  313. void STDCALL mysql_thread_end(void);
  314. /*
  315.   Functions to get information from the MYSQL and MYSQL_RES structures
  316.   Should definitely be used if one uses shared libraries.
  317. */
  318. my_ulonglong STDCALL mysql_num_rows(MYSQL_RES *res);
  319. unsigned int STDCALL mysql_num_fields(MYSQL_RES *res);
  320. my_bool STDCALL mysql_eof(MYSQL_RES *res);
  321. MYSQL_FIELD *STDCALL mysql_fetch_field_direct(MYSQL_RES *res,
  322.       unsigned int fieldnr);
  323. MYSQL_FIELD * STDCALL mysql_fetch_fields(MYSQL_RES *res);
  324. MYSQL_ROW_OFFSET STDCALL mysql_row_tell(MYSQL_RES *res);
  325. MYSQL_FIELD_OFFSET STDCALL mysql_field_tell(MYSQL_RES *res);
  326. unsigned int STDCALL mysql_field_count(MYSQL *mysql);
  327. my_ulonglong STDCALL mysql_affected_rows(MYSQL *mysql);
  328. my_ulonglong STDCALL mysql_insert_id(MYSQL *mysql);
  329. unsigned int STDCALL mysql_errno(MYSQL *mysql);
  330. const char * STDCALL mysql_error(MYSQL *mysql);
  331. const char *STDCALL mysql_sqlstate(MYSQL *mysql);
  332. unsigned int STDCALL mysql_warning_count(MYSQL *mysql);
  333. const char * STDCALL mysql_info(MYSQL *mysql);
  334. unsigned long STDCALL mysql_thread_id(MYSQL *mysql);
  335. const char * STDCALL mysql_character_set_name(MYSQL *mysql);
  336. int STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname);
  337. MYSQL * STDCALL mysql_init(MYSQL *mysql);
  338. my_bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key,
  339.       const char *cert, const char *ca,
  340.       const char *capath, const char *cipher);
  341. my_bool STDCALL mysql_change_user(MYSQL *mysql, const char *user, 
  342.   const char *passwd, const char *db);
  343. MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
  344.    const char *user,
  345.    const char *passwd,
  346.    const char *db,
  347.    unsigned int port,
  348.    const char *unix_socket,
  349.    unsigned long clientflag);
  350. int STDCALL mysql_select_db(MYSQL *mysql, const char *db);
  351. int STDCALL mysql_query(MYSQL *mysql, const char *q);
  352. int STDCALL mysql_send_query(MYSQL *mysql, const char *q,
  353.  unsigned long length);
  354. int STDCALL mysql_real_query(MYSQL *mysql, const char *q,
  355. unsigned long length);
  356. MYSQL_RES *     STDCALL mysql_store_result(MYSQL *mysql);
  357. MYSQL_RES *     STDCALL mysql_use_result(MYSQL *mysql);
  358. /* perform query on master */
  359. my_bool STDCALL mysql_master_query(MYSQL *mysql, const char *q,
  360.    unsigned long length);
  361. my_bool STDCALL mysql_master_send_query(MYSQL *mysql, const char *q,
  362. unsigned long length);
  363. /* perform query on slave */  
  364. my_bool STDCALL mysql_slave_query(MYSQL *mysql, const char *q,
  365.   unsigned long length);
  366. my_bool STDCALL mysql_slave_send_query(MYSQL *mysql, const char *q,
  367.        unsigned long length);
  368. /* local infile support */
  369. #define LOCAL_INFILE_ERROR_LEN 512
  370. void
  371. mysql_set_local_infile_handler(MYSQL *mysql,
  372.                                int (*local_infile_init)(void **, const char *,
  373.                             void *),
  374.                                int (*local_infile_read)(void *, char *,
  375. unsigned int),
  376.                                void (*local_infile_end)(void *),
  377.                                int (*local_infile_error)(void *, char*,
  378.  unsigned int),
  379.                                void *);
  380. void
  381. mysql_set_local_infile_default(MYSQL *mysql);
  382. /*
  383.   enable/disable parsing of all queries to decide if they go on master or
  384.   slave
  385. */
  386. void            STDCALL mysql_enable_rpl_parse(MYSQL* mysql);
  387. void            STDCALL mysql_disable_rpl_parse(MYSQL* mysql);
  388. /* get the value of the parse flag */  
  389. int             STDCALL mysql_rpl_parse_enabled(MYSQL* mysql);
  390. /*  enable/disable reads from master */
  391. void            STDCALL mysql_enable_reads_from_master(MYSQL* mysql);
  392. void            STDCALL mysql_disable_reads_from_master(MYSQL* mysql);
  393. /* get the value of the master read flag */  
  394. my_bool STDCALL mysql_reads_from_master_enabled(MYSQL* mysql);
  395. enum mysql_rpl_type     STDCALL mysql_rpl_query_type(const char* q, int len);  
  396. /* discover the master and its slaves */  
  397. my_bool STDCALL mysql_rpl_probe(MYSQL* mysql);
  398. /* set the master, close/free the old one, if it is not a pivot */
  399. int             STDCALL mysql_set_master(MYSQL* mysql, const char* host,
  400.  unsigned int port,
  401.  const char* user,
  402.  const char* passwd);
  403. int             STDCALL mysql_add_slave(MYSQL* mysql, const char* host,
  404. unsigned int port,
  405. const char* user,
  406. const char* passwd);
  407. int STDCALL mysql_shutdown(MYSQL *mysql,
  408.                                        enum mysql_enum_shutdown_level
  409.                                        shutdown_level);
  410. int STDCALL mysql_dump_debug_info(MYSQL *mysql);
  411. int STDCALL mysql_refresh(MYSQL *mysql,
  412.      unsigned int refresh_options);
  413. int STDCALL mysql_kill(MYSQL *mysql,unsigned long pid);
  414. int STDCALL mysql_set_server_option(MYSQL *mysql,
  415. enum enum_mysql_set_option
  416. option);
  417. int STDCALL mysql_ping(MYSQL *mysql);
  418. const char * STDCALL mysql_stat(MYSQL *mysql);
  419. const char * STDCALL mysql_get_server_info(MYSQL *mysql);
  420. const char * STDCALL mysql_get_client_info(void);
  421. unsigned long STDCALL mysql_get_client_version(void);
  422. const char * STDCALL mysql_get_host_info(MYSQL *mysql);
  423. unsigned long STDCALL mysql_get_server_version(MYSQL *mysql);
  424. unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql);
  425. MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild);
  426. MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild);
  427. MYSQL_RES * STDCALL mysql_list_processes(MYSQL *mysql);
  428. int STDCALL mysql_options(MYSQL *mysql,enum mysql_option option,
  429.       const char *arg);
  430. void STDCALL mysql_free_result(MYSQL_RES *result);
  431. void STDCALL mysql_data_seek(MYSQL_RES *result,
  432. my_ulonglong offset);
  433. MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *result,
  434. MYSQL_ROW_OFFSET offset);
  435. MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *result,
  436.    MYSQL_FIELD_OFFSET offset);
  437. MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *result);
  438. unsigned long * STDCALL mysql_fetch_lengths(MYSQL_RES *result);
  439. MYSQL_FIELD * STDCALL mysql_fetch_field(MYSQL_RES *result);
  440. MYSQL_RES *     STDCALL mysql_list_fields(MYSQL *mysql, const char *table,
  441.   const char *wild);
  442. unsigned long STDCALL mysql_escape_string(char *to,const char *from,
  443.     unsigned long from_length);
  444. unsigned long STDCALL mysql_hex_string(char *to,const char *from,
  445.                                          unsigned long from_length);
  446. unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql,
  447.        char *to,const char *from,
  448.        unsigned long length);
  449. void STDCALL mysql_debug(const char *debug);
  450. char * STDCALL mysql_odbc_escape_string(MYSQL *mysql,
  451.  char *to,
  452.  unsigned long to_length,
  453.  const char *from,
  454.  unsigned long from_length,
  455.  void *param,
  456.  char *
  457.  (*extend_buffer)
  458.  (void *, char *to,
  459.   unsigned long *length));
  460. void  STDCALL myodbc_remove_escape(MYSQL *mysql,char *name);
  461. unsigned int STDCALL mysql_thread_safe(void);
  462. my_bool STDCALL mysql_embedded(void);
  463. MYSQL_MANAGER*  STDCALL mysql_manager_init(MYSQL_MANAGER* con);  
  464. MYSQL_MANAGER*  STDCALL mysql_manager_connect(MYSQL_MANAGER* con,
  465.       const char* host,
  466.       const char* user,
  467.       const char* passwd,
  468.       unsigned int port);
  469. void            STDCALL mysql_manager_close(MYSQL_MANAGER* con);
  470. int             STDCALL mysql_manager_command(MYSQL_MANAGER* con,
  471. const char* cmd, int cmd_len);
  472. int             STDCALL mysql_manager_fetch_line(MYSQL_MANAGER* con,
  473.   char* res_buf,
  474.  int res_buf_size);
  475. my_bool         STDCALL mysql_read_query_result(MYSQL *mysql);
  476. /*
  477.   The following definitions are added for the enhanced 
  478.   client-server protocol
  479. */
  480. /* statement state */
  481. enum enum_mysql_stmt_state
  482. {
  483.   MYSQL_STMT_INIT_DONE= 1, MYSQL_STMT_PREPARE_DONE, MYSQL_STMT_EXECUTE_DONE,
  484.   MYSQL_STMT_FETCH_DONE
  485. };
  486. /* bind structure */
  487. typedef struct st_mysql_bind
  488. {
  489.   unsigned long *length;          /* output length pointer */
  490.   my_bool       *is_null;   /* Pointer to null indicator */
  491.   void *buffer;   /* buffer to get/put data */
  492.   enum enum_field_types buffer_type; /* buffer type */
  493.   unsigned long buffer_length;    /* buffer length, must be set for str/binary */  
  494.   /* Following are for internal use. Set by mysql_stmt_bind_param */
  495.   unsigned char *inter_buffer;    /* for the current data position */
  496.   unsigned long offset;           /* offset position for char/binary fetch */
  497.   unsigned long internal_length;  /* Used if length is 0 */
  498.   unsigned int param_number;   /* For null count and error messages */
  499.   unsigned int  pack_length;   /* Internal length for packed data */
  500.   my_bool       is_unsigned;      /* set if integer type is unsigned */
  501.   my_bool long_data_used;   /* If used with mysql_send_long_data */
  502.   my_bool internal_is_null; /* Used if is_null is 0 */
  503.   void (*store_param_func)(NET *net, struct st_mysql_bind *param);
  504.   void (*fetch_result)(struct st_mysql_bind *, unsigned char **row);
  505.   void (*skip_result)(struct st_mysql_bind *, MYSQL_FIELD *,
  506.       unsigned char **row);
  507. } MYSQL_BIND;
  508. /* statement handler */
  509. typedef struct st_mysql_stmt
  510. {
  511.   MEM_ROOT       mem_root;             /* root allocations */
  512.   LIST           list;                 /* list to keep track of all stmts */
  513.   MYSQL          *mysql;               /* connection handle */
  514.   MYSQL_BIND     *params;              /* input parameters */
  515.   MYSQL_BIND     *bind;                /* output parameters */
  516.   MYSQL_FIELD    *fields;              /* result set metadata */
  517.   MYSQL_DATA     result;               /* cached result set */
  518.   MYSQL_ROWS     *data_cursor;         /* current row in cached result */
  519.   /* copy of mysql->affected_rows after statement execution */
  520.   my_ulonglong   affected_rows;
  521.   my_ulonglong   insert_id;            /* copy of mysql->insert_id */
  522.   /*
  523.     mysql_stmt_fetch() calls this function to fetch one row (it's different
  524.     for buffered, unbuffered and cursor fetch).
  525.   */
  526.   int            (*read_row_func)(struct st_mysql_stmt *stmt, 
  527.                                   unsigned char **row);
  528.   unsigned long  stmt_id;        /* Id for prepared statement */
  529.   unsigned int  last_errno;        /* error code */
  530.   unsigned int   param_count;          /* input parameter count */
  531.   unsigned int   field_count;          /* number of columns in result set */
  532.   enum enum_mysql_stmt_state state;    /* statement state */
  533.   char  last_error[MYSQL_ERRMSG_SIZE]; /* error message */
  534.   char  sqlstate[SQLSTATE_LENGTH+1];
  535.   /* Types of input parameters should be sent to server */
  536.   my_bool        send_types_to_server;
  537.   my_bool        bind_param_done;      /* input buffers were supplied */
  538.   my_bool        bind_result_done;     /* output buffers were supplied */
  539.   /* mysql_stmt_close() had to cancel this result */
  540.   my_bool       unbuffered_fetch_cancelled;  
  541.   /*
  542.     Is set to true if we need to calculate field->max_length for 
  543.     metadata fields when doing mysql_stmt_store_result.
  544.   */
  545.   my_bool       update_max_length;     
  546. } MYSQL_STMT;
  547. enum enum_stmt_attr_type
  548. {
  549.   /*
  550.     When doing mysql_stmt_store_result calculate max_length attribute
  551.     of statement metadata. This is to be consistent with the old API, 
  552.     where this was done automatically.
  553.     In the new API we do that only by request because it slows down
  554.     mysql_stmt_store_result sufficiently.
  555.   */
  556.   STMT_ATTR_UPDATE_MAX_LENGTH
  557. };
  558. typedef struct st_mysql_methods
  559. {
  560.   my_bool (*read_query_result)(MYSQL *mysql);
  561.   my_bool (*advanced_command)(MYSQL *mysql,
  562.       enum enum_server_command command,
  563.       const char *header,
  564.       unsigned long header_length,
  565.       const char *arg,
  566.       unsigned long arg_length,
  567.       my_bool skip_check);
  568.   MYSQL_DATA *(*read_rows)(MYSQL *mysql,MYSQL_FIELD *mysql_fields,
  569.    unsigned int fields);
  570.   MYSQL_RES * (*use_result)(MYSQL *mysql);
  571.   void (*fetch_lengths)(unsigned long *to, 
  572. MYSQL_ROW column, unsigned int field_count);
  573.   void (*flush_use_result)(MYSQL *mysql);
  574. #if !defined(MYSQL_SERVER) || defined(EMBEDDED_LIBRARY)
  575.   MYSQL_FIELD * (*list_fields)(MYSQL *mysql);
  576.   my_bool (*read_prepare_result)(MYSQL *mysql, MYSQL_STMT *stmt);
  577.   int (*stmt_execute)(MYSQL_STMT *stmt);
  578.   int (*read_binary_rows)(MYSQL_STMT *stmt);
  579.   int (*unbuffered_fetch)(MYSQL *mysql, char **row);
  580.   void (*free_embedded_thd)(MYSQL *mysql);
  581.   const char *(*read_statistics)(MYSQL *mysql);
  582.   my_bool (*next_result)(MYSQL *mysql);
  583.   int (*read_change_user_result)(MYSQL *mysql, char *buff, const char *passwd);
  584. #endif
  585. } MYSQL_METHODS;
  586. MYSQL_STMT * STDCALL mysql_stmt_init(MYSQL *mysql);
  587. int STDCALL mysql_stmt_prepare(MYSQL_STMT *stmt, const char *query,
  588.                                unsigned long length);
  589. int STDCALL mysql_stmt_execute(MYSQL_STMT *stmt);
  590. int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt);
  591. int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind, 
  592.                                     unsigned int column,
  593.                                     unsigned long offset);
  594. int STDCALL mysql_stmt_store_result(MYSQL_STMT *stmt);
  595. unsigned long STDCALL mysql_stmt_param_count(MYSQL_STMT * stmt);
  596. my_bool STDCALL mysql_stmt_attr_set(MYSQL_STMT *stmt,
  597.                                     enum enum_stmt_attr_type attr_type,
  598.                                     const void *attr);
  599. my_bool STDCALL mysql_stmt_attr_get(MYSQL_STMT *stmt,
  600.                                     enum enum_stmt_attr_type attr_type,
  601.                                     void *attr);
  602. my_bool STDCALL mysql_stmt_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bnd);
  603. my_bool STDCALL mysql_stmt_bind_result(MYSQL_STMT * stmt, MYSQL_BIND * bnd);
  604. my_bool STDCALL mysql_stmt_close(MYSQL_STMT * stmt);
  605. my_bool STDCALL mysql_stmt_reset(MYSQL_STMT * stmt);
  606. my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt);
  607. my_bool STDCALL mysql_stmt_send_long_data(MYSQL_STMT *stmt, 
  608.                                           unsigned int param_number,
  609.                                           const char *data, 
  610.                                           unsigned long length);
  611. MYSQL_RES *STDCALL mysql_stmt_result_metadata(MYSQL_STMT *stmt);
  612. MYSQL_RES *STDCALL mysql_stmt_param_metadata(MYSQL_STMT *stmt);
  613. unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT * stmt);
  614. const char *STDCALL mysql_stmt_error(MYSQL_STMT * stmt);
  615. const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT * stmt);
  616. MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_seek(MYSQL_STMT *stmt, 
  617.                                              MYSQL_ROW_OFFSET offset);
  618. MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_tell(MYSQL_STMT *stmt);
  619. void STDCALL mysql_stmt_data_seek(MYSQL_STMT *stmt, my_ulonglong offset);
  620. my_ulonglong STDCALL mysql_stmt_num_rows(MYSQL_STMT *stmt);
  621. my_ulonglong STDCALL mysql_stmt_affected_rows(MYSQL_STMT *stmt);
  622. my_ulonglong STDCALL mysql_stmt_insert_id(MYSQL_STMT *stmt);
  623. unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt);
  624. my_bool STDCALL mysql_commit(MYSQL * mysql);
  625. my_bool STDCALL mysql_rollback(MYSQL * mysql);
  626. my_bool STDCALL mysql_autocommit(MYSQL * mysql, my_bool auto_mode);
  627. my_bool STDCALL mysql_more_results(MYSQL *mysql);
  628. int STDCALL mysql_next_result(MYSQL *mysql);
  629. void STDCALL mysql_close(MYSQL *sock);
  630. /* status return codes */
  631. #define MYSQL_NO_DATA      100
  632. #define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT)
  633. #ifdef USE_OLD_FUNCTIONS
  634. MYSQL * STDCALL mysql_connect(MYSQL *mysql, const char *host,
  635.       const char *user, const char *passwd);
  636. int STDCALL mysql_create_db(MYSQL *mysql, const char *DB);
  637. int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB);
  638. #define  mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT)
  639. #endif
  640. #define HAVE_MYSQL_REAL_CONNECT
  641. /*
  642.   The following functions are mainly exported because of mysqlbinlog;
  643.   They are not for general usage
  644. */
  645. #define simple_command(mysql, command, arg, length, skip_check) 
  646.   (*(mysql)->methods->advanced_command)(mysql, command,         
  647. NullS, 0, arg, length, skip_check)
  648. unsigned long net_safe_read(MYSQL* mysql);
  649. #ifdef __NETWARE__
  650. #pragma pack(pop) /* restore alignment */
  651. #endif
  652. #ifdef __cplusplus
  653. }
  654. #endif
  655. #endif /* _mysql_h */