table of contents
other versions
- bookworm 1:10.11.11-0+deb12u1
- testing 1:11.4.5-1
- unstable 1:11.8.1-2
- experimental 1:11.4.5-2~exp1
mysql_get_proto_info(3) | MariaDB Connector/C | mysql_get_proto_info(3) |
Name¶
mysql_get_proto_info - Returns protocol version number
Synopsis¶
-
#include <mysql.h> unsigned int mysql_get_proto_info(MYSQL * mysql);
Description¶
Returns the protocol version number for the specified connection
Parameter¶
- •
- mysql - a connection identifier, which was previously allocated by mysql_init(3) and connected by mysql_real_connect(3).
Notes¶
MariaDB Connector/C doesn’t support protocol version 9 and prior.
Return value¶
The protocol version number in use
See also¶
Version 3.4 |