mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-08 02:00:30 +02:00
20 lines
291 B
ObjectPascal
20 lines
291 B
ObjectPascal
unit mysql_version;
|
|
|
|
{
|
|
Translated from mysql_version.h by Michael Van Canneyt
|
|
(michael@tfdec1.fys.kuleuven.ac.be)
|
|
}
|
|
|
|
interface
|
|
|
|
{ Version numbers for protocol & mysqld }
|
|
Const
|
|
|
|
MYSQL_SERVER_VERSION : pchar ='3.21.28-gamma';
|
|
FRM_VER = 6;
|
|
MYSQL_VERSION_ID =32128;
|
|
|
|
implementation
|
|
|
|
end.
|