unit mysql3_version; {$undef use_mysql_321} { if undefined, use mysql 3.23 interface } { Translated from mysql_version.h by Michael Van Canneyt (michael@tfdec1.fys.kuleuven.ac.be) updated to match version 3.23 header files of mysql by Bernhard Steffen (bernhard.steffen@gmx.net) } interface { Version numbers for protocol & mysqld } Const {$ifdef use_mysql_321} MYSQL_SERVER_VERSION : pchar ='3.21.28-gamma'; FRM_VER = 6; MYSQL_VERSION_ID =32128; {$else} MYSQL_SERVER_VERSION : pchar ='3.23.34'; FRM_VER = 6; { ??? } MYSQL_VERSION_ID =32334; {$endif} implementation end. $Log$ Revision 1.1 2004-09-30 19:34:47 michael + Split everything in version 3 and version 4 Revision 1.1 2004/09/28 18:38:23 michael + Moved to subdir, switching to version 4.0 Revision 1.3 2002/09/07 15:42:53 peter * old logs removed and tabs fixed Revision 1.2 2002/08/26 17:52:31 michael + Upgraded to 3.23 }