mysql_version.h
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 1k
Category:

MySQL

Development Platform:

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