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

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. /*
  4. ** Common definition between mysql server & client
  5. */
  6. #ifndef _mysql_com_h
  7. #define _mysql_com_h
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #define NAME_LEN 64 /* Field/table name length */
  12. #define LOCAL_HOST "localhost"
  13. #define MYSQL_PORT 3306 /* Alloced by ISI for MySQL */
  14. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  15. enum enum_server_command {COM_SLEEP,COM_QUIT,COM_INIT_DB,COM_QUERY,
  16.   COM_FIELD_LIST,COM_CREATE_DB,COM_DROP_DB,COM_REFRESH,
  17.   COM_SHUTDOWN,COM_STATISTICS,
  18.   COM_PROCESS_INFO,COM_CONNECT,COM_PROCESS_KILL,
  19.   COM_DEBUG};
  20. #define NOT_NULL_FLAG 1 /* Field can't be NULL */
  21. #define PRI_KEY_FLAG 2 /* Field is part of a primary key */
  22. #define UNIQUE_KEY_FLAG 4 /* Field is part of a unique key */
  23. #define MULTIPLE_KEY_FLAG 8 /* Field is part of a key */
  24. #define BLOB_FLAG 16 /* Field is a blob */
  25. #define UNSIGNED_FLAG 32 /* Field is unsigned */
  26. #define ZEROFILL_FLAG 64 /* Field is zerofill */
  27. #define BINARY_FLAG 128
  28. /* The following are only sent to new clients */
  29. #define ENUM_FLAG 256 /* field is an enum */
  30. #define AUTO_INCREMENT_FLAG 512 /* field is a autoincrement field */
  31. #define TIMESTAMP_FLAG 1024 /* Field is a timestamp */
  32. #define PART_KEY_FLAG 16384 /* Intern; Part of some key */
  33. #define GROUP_FLAG 32768 /* Intern group field */
  34. #define REFRESH_GRANT 1 /* Refresh grant tables */
  35. #define REFRESH_LOG 2 /* Start on new log file */
  36. #define REFRESH_TABLES 4 /* close all tables */
  37. #define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */
  38. #define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */
  39. #define CLIENT_LONG_FLAG 4 /* Get all column flags */
  40. #define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */
  41. typedef struct st_used_mem { /* struct for once_alloc */
  42.   struct st_used_mem *next; /* Next block in use */
  43.   unsigned int left; /* memory left in block  */
  44.   unsigned int size; /* size of block */
  45. } USED_MEM;
  46. typedef struct st_mem_root {
  47.   USED_MEM *free;
  48.   USED_MEM *used;
  49.   unsigned int min_malloc;
  50.   unsigned int  block_size;
  51.   void (*error_handler)(void);
  52. } MEM_ROOT;
  53. #define MYSQL_ERRMSG_SIZE 200
  54. typedef struct st_net {
  55.   Socket fd;
  56.   int fcntl;
  57.   unsigned char *buff,*buff_end,*write_pos;
  58.   char last_error[MYSQL_ERRMSG_SIZE];
  59.   unsigned int last_errno,max_packet,timeout,pkt_nr;
  60.   my_bool error,return_errno;
  61. } NET;
  62. #define packet_error ((unsigned int) -1)
  63. enum enum_field_types { FIELD_TYPE_DECIMAL, FIELD_TYPE_TINY,
  64. FIELD_TYPE_SHORT,  FIELD_TYPE_LONG,
  65. FIELD_TYPE_FLOAT,  FIELD_TYPE_DOUBLE,
  66. FIELD_TYPE_NULL,   FIELD_TYPE_TIMESTAMP,
  67. FIELD_TYPE_LONGLONG,FIELD_TYPE_INT24,
  68. FIELD_TYPE_DATE,   FIELD_TYPE_TIME,
  69. FIELD_TYPE_DATETIME,
  70. FIELD_TYPE_ENUM=247,
  71. FIELD_TYPE_SET=248,
  72. FIELD_TYPE_TINY_BLOB=249,
  73. FIELD_TYPE_MEDIUM_BLOB=250,
  74. FIELD_TYPE_LONG_BLOB=251,
  75. FIELD_TYPE_BLOB=252,
  76. FIELD_TYPE_VAR_STRING=253,
  77. FIELD_TYPE_STRING=254
  78. };
  79. #define FIELD_TYPE_CHAR FIELD_TYPE_TINY /* For compability */
  80. #define FIELD_TYPE_INTERVAL FIELD_TYPE_ENUM /* For compability */
  81. void sql_free(MEM_ROOT *root);
  82. void init_alloc_root(MEM_ROOT *root,unsigned int block_size);
  83. my_bool sql_alloc_first_block(MEM_ROOT *root);
  84. gptr sql_alloc_root(MEM_ROOT *mem_root,unsigned int len);
  85. char *sql_strdup_root(MEM_ROOT *root,const char *str);
  86. char *sql_memdup_root(MEM_ROOT *root,const char *str,unsigned int len);
  87. extern unsigned long max_allowed_packet;
  88. extern unsigned long net_buffer_length;
  89. #define net_new_transaction(net) ((net)->pkt_nr=0)
  90. int my_net_init(NET *net,Socket fd);
  91. void net_end(NET *net);
  92. void net_clear(NET *net);
  93. int net_flush(NET *net);
  94. int my_net_write(NET *net,const byte *packet,unsigned int len);
  95. int net_write_command(NET *net,unsigned char command,const byte *packet,
  96.   unsigned int len);
  97. int net_real_write(NET *net,const byte *packet,unsigned int len);
  98. unsigned int my_net_read(NET *net);
  99. struct rand_struct {
  100.   unsigned long seed,seed2,max_value;
  101.   double max_value_dbl;
  102. };
  103.   /* The following is for user defined functions */
  104. enum Item_result {STRING_RESULT,REAL_RESULT,INT_RESULT};
  105. typedef struct st_udf_args
  106. {
  107.   unsigned int arg_count; /* Number of arguments */
  108.   enum Item_result *arg_type; /* Pointer to item_results */
  109.   char **args; /* Pointer to argument */
  110.   unsigned long *lengths; /* Length of string arguments */
  111. } UDF_ARGS;
  112.   /* This holds information about the result */
  113. typedef struct st_udf_init
  114. {
  115.   my_bool maybe_null; /* 1 if function can return NULL */
  116.   unsigned int decimals; /* for real functions */
  117.   unsigned int max_length; /* For string functions */
  118.   char   *ptr; /* free pointer for function data */
  119. } UDF_INIT;
  120.   /* Prototypes to password functions */
  121. void randominit(struct rand_struct *rand,unsigned long seed1,
  122. unsigned long seed2);
  123. double rnd(struct rand_struct *rand);
  124. void make_scrambled_password(char *to,const char *password);
  125. void get_salt_from_password(unsigned long *res,const char *password);
  126. char *scramble(char *to,const char *message,const char *password,
  127.        my_bool old_ver);
  128. my_bool check_scramble(const char *scramble,const char *message,
  129.        unsigned long *salt,my_bool old_ver);
  130. char *get_tty_password(char *opt_message);
  131. #define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */
  132. #ifdef __WIN32__
  133. #define socket_errno WSAGetLastError()
  134. #else
  135. #define socket_errno errno
  136. #endif
  137. #ifdef __cplusplus
  138. }
  139. #endif
  140. #endif