mysql3_version.pp 946 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.
  23. $Log$
  24. Revision 1.1 2004-09-30 19:34:47 michael
  25. + Split everything in version 3 and version 4
  26. Revision 1.1 2004/09/28 18:38:23 michael
  27. + Moved to subdir, switching to version 4.0
  28. Revision 1.3 2002/09/07 15:42:53 peter
  29. * old logs removed and tabs fixed
  30. Revision 1.2 2002/08/26 17:52:31 michael
  31. + Upgraded to 3.23
  32. }