mysql_get_server_version
mysql_get_server_version retrieves the server version as an unsigned long; use mysql_get_server_info for the equivalent string representation.
Last updated
Was this helpful?
mysql_get_server_version retrieves the server version as an unsigned long; use mysql_get_server_info for the equivalent string representation.
unsigned long mysql_get_server_version(MYSQL * mysql);mysql - a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
Returns an integer representing the version of connected server.
The form of the version number is VERSION_MAJOR * 10000 + VERSION_MINOR * 100 + VERSION_PATCH
Last updated
Was this helpful?
Was this helpful?

