mysql_get_server_info
mysql_get_server_info retrieves the connected server version string; use mysql_get_server_version for the equivalent numeric representation.
Last updated
Was this helpful?
mysql_get_server_info retrieves the connected server version string; use mysql_get_server_version for the equivalent numeric representation.
char * mysql_get_server_info(MYSQL * mysql);mysql - a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
Returns the server version or NULL on failure.
Returns the server version as zero terminated string or NULLon failure.
To obtain the numeric server version please use mysql_get_server_version().
Last updated
Was this helpful?
Was this helpful?

