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

模拟服务器

开发平台:

C/C++

  1. /* Copyright Abandoned 1996, 1999, 2001 MySQL AB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /* Version numbers for protocol & mysqld */
  4. #ifdef _CUSTOMCONFIG_
  5. #include <custom_conf.h>
  6. #else
  7. #define PROTOCOL_VERSION 10
  8. #define MYSQL_SERVER_VERSION "3.23.32"
  9. #define MYSQL_SERVER_SUFFIX ""
  10. #define FRM_VER 6
  11. #define MYSQL_VERSION_ID 32332
  12. #define MYSQL_PORT 3306
  13. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  14. /* mysqld compile time options */
  15. #ifndef MYSQL_CHARSET
  16. #define MYSQL_CHARSET "latin1"
  17. #endif
  18. #endif