mysql3_version.pp 601 B

1234567891011121314151617181920212223242526272829303132
  1. unit mysql3_version;
  2. {$undef use_mysql_321} { if undefined, use mysql 3.23 interface }
  3. {
  4. Translated from mysql_version.h by Michael Van Canneyt
  5. ([email protected])
  6. updated to match version 3.23 header files of mysql by Bernhard Steffen
  7. ([email protected])
  8. }
  9. interface
  10. { Version numbers for protocol & mysqld }
  11. Const
  12. {$ifdef use_mysql_321}
  13. MYSQL_SERVER_VERSION : pchar ='3.21.28-gamma';
  14. FRM_VER = 6;
  15. MYSQL_VERSION_ID =32128;
  16. {$else}
  17. MYSQL_SERVER_VERSION : pchar ='3.23.34';
  18. FRM_VER = 6; { ??? }
  19. MYSQL_VERSION_ID =32334;
  20. {$endif}
  21. implementation
  22. end.