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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB & Detron HB
  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.22-beta"
  9. #define FRM_VER 6
  10. #define MYSQL_VERSION_ID 32322
  11. #define MYSQL_PORT 3306
  12. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  13. /* mysqld compile time options */
  14. #ifndef MYSQL_CHARSET
  15. #define MYSQL_CHARSET "latin1"
  16. #endif
  17. #endif