Description
Read-only
The version of the mysql server which you are connected to. ServerVersion gives the version in full text, ex "4.0.18-Alpha", while ServerVer gives it as an integer for easy coding, ex. "40018". Thus you can easily code something like:
...
if MySQLServer1.ServerVer>=40000then // MySQL 4 specific code else // MySQL 3 specific code
...