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 REFRESH_HOSTS 8 /* Flush host cache */
  38. #define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */
  39. #define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */
  40. #define CLIENT_LONG_FLAG 4 /* Get all column flags */
  41. #define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */
  42. #define CLIENT_NO_SCHEMA 16 /* Don't allow database.table.column */
  43. #define MYSQL_ERRMSG_SIZE 200
  44. #define NET_READ_TIMEOUT 30 /* Timeout on read */
  45. #define NET_WRITE_TIMEOUT 60 /* Timeout on write */
  46. #define NET_WAIT_TIMEOUT 8*60*60 /* Wait for new query */
  47. typedef struct st_net {
  48.   Socket fd;
  49.   int fcntl;
  50.   unsigned char *buff,*buff_end,*write_pos;
  51.   char last_error[MYSQL_ERRMSG_SIZE];
  52.   unsigned int last_errno,max_packet,timeout,pkt_nr;
  53.   my_bool error,return_errno;
  54. } NET;
  55. #define packet_error ((unsigned int) -1)
  56. enum enum_field_types { FIELD_TYPE_DECIMAL, FIELD_TYPE_TINY,
  57. FIELD_TYPE_SHORT,  FIELD_TYPE_LONG,
  58. FIELD_TYPE_FLOAT,  FIELD_TYPE_DOUBLE,
  59. FIELD_TYPE_NULL,   FIELD_TYPE_TIMESTAMP,
  60. FIELD_TYPE_LONGLONG,FIELD_TYPE_INT24,
  61. FIELD_TYPE_DATE,   FIELD_TYPE_TIME,
  62. FIELD_TYPE_DATETIME, FIELD_TYPE_YEAR,
  63. FIELD_TYPE_NEWDATE,
  64. FIELD_TYPE_ENUM=247,
  65. FIELD_TYPE_SET=248,
  66. FIELD_TYPE_TINY_BLOB=249,
  67. FIELD_TYPE_MEDIUM_BLOB=250,
  68. FIELD_TYPE_LONG_BLOB=251,
  69. FIELD_TYPE_BLOB=252,
  70. FIELD_TYPE_VAR_STRING=253,
  71. FIELD_TYPE_STRING=254
  72. };
  73. #define FIELD_TYPE_CHAR FIELD_TYPE_TINY /* For compability */
  74. #define FIELD_TYPE_INTERVAL FIELD_TYPE_ENUM /* For compability */
  75. extern unsigned long max_allowed_packet;
  76. extern unsigned long net_buffer_length;
  77. #define net_new_transaction(net) ((net)->pkt_nr=0)
  78. int my_net_init(NET *net,Socket fd);
  79. void net_end(NET *net);
  80. void net_clear(NET *net);
  81. int net_flush(NET *net);
  82. int my_net_write(NET *net,const byte *packet,unsigned int len);
  83. int net_write_command(NET *net,unsigned char command,const byte *packet,
  84.   unsigned int len);
  85. int net_real_write(NET *net,const byte *packet,unsigned int len);
  86. unsigned int my_net_read(NET *net);
  87. struct rand_struct {
  88.   unsigned long seed,seed2,max_value;
  89.   double max_value_dbl;
  90. };
  91.   /* The following is for user defined functions */
  92. enum Item_result {STRING_RESULT,REAL_RESULT,INT_RESULT};
  93. typedef struct st_udf_args
  94. {
  95.   unsigned int arg_count; /* Number of arguments */
  96.   enum Item_result *arg_type; /* Pointer to item_results */
  97.   char **args; /* Pointer to argument */
  98.   unsigned long *lengths; /* Length of string arguments */
  99. } UDF_ARGS;
  100.   /* This holds information about the result */
  101. typedef struct st_udf_init
  102. {
  103.   my_bool maybe_null; /* 1 if function can return NULL */
  104.   unsigned int decimals; /* for real functions */
  105.   unsigned int max_length; /* For string functions */
  106.   char   *ptr; /* free pointer for function data */
  107. } UDF_INIT;
  108.   /* Prototypes to password functions */
  109. void randominit(struct rand_struct *rand,unsigned long seed1,
  110. unsigned long seed2);
  111. double rnd(struct rand_struct *rand);
  112. void make_scrambled_password(char *to,const char *password);
  113. void get_salt_from_password(unsigned long *res,const char *password);
  114. char *scramble(char *to,const char *message,const char *password,
  115.        my_bool old_ver);
  116. my_bool check_scramble(const char *scramble,const char *message,
  117.        unsigned long *salt,my_bool old_ver);
  118. char *get_tty_password(char *opt_message);
  119. #define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */
  120. #ifdef __WIN32__
  121. #define socket_errno WSAGetLastError()
  122. #else
  123. #define socket_errno errno
  124. #endif
  125. #ifdef __cplusplus
  126. }
  127. #endif
  128. #endif