mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-01 19:33:42 +02:00
41 lines
759 B
ObjectPascal
41 lines
759 B
ObjectPascal
unit mysql_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.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
|
|
|
|
}
|