1234567891011121314151617181920212223242526272829303132 |
- unit mysql3_version;
- {$undef use_mysql_321} { if undefined, use mysql 3.23 interface }
- {
- Translated from mysql_version.h by Michael Van Canneyt
- ([email protected])
- updated to match version 3.23 header files of mysql by Bernhard Steffen
- ([email protected])
- }
- 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.
|