Search



Search Results
Displaying 1901 to 1910 of 1965 total results
https://dev.mysql.com/doc/c-api/9.7/en/mysql-free-result-nonblocking.html
enum net_async_status mysql_free_result_nonblocking(MYSQL_RES *result) Description Note mysql_free_result_nonblocking() is an asynchronous function. It is the counterpart of the mysql_free_result() synchronous function, for use by applications that ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-free-result.html
void mysql_free_result(MYSQL_RES *result) Description Note mysql_free_result() is a synchronous function. Its asynchronous counterpart is mysql_free_result_nonblocking(), for use by applications that require asynchronous communication with the ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-free-ssl-session-data.html
bool mysql_free_ssl_session_data(MYSQL *, void *data) Description mysql_free_ssl_session_data() disposes of a session data handle that was obtained previously by calling mysql_get_ssl_session_data(). Never call this function for any session that is ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-client-info.html
const char * mysql_get_client_info(void) Description Returns a string that represents the MySQL client library version (for example, "9.7.0"). The function value is the version of MySQL that provides the client library. For more information, see ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-client-version.html
unsigned long mysql_get_client_version(void) Description Returns an integer that represents the MySQL client library version. The value has the format XXYYZZ, where XX is the major version, YY is the release level (or minor version), and ZZ is the ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-host-info.html
const char * mysql_get_host_info(MYSQL *mysql) Description Returns a string describing the type of connection in use, including the server host name. Return Values A character string representing the server host name and the connection type.
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-proto-info.html
unsigned int mysql_get_proto_info(MYSQL *mysql) Description Returns the protocol version used by current connection. Return Values An unsigned integer representing the protocol version used by the current connection.
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-server-info.html
const char * mysql_get_server_info(MYSQL *mysql) Description Returns a string that represents the MySQL server version (for example, "9.7.0"). Return Values A character string that represents the MySQL server version.
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-server-version.html
unsigned long mysql_get_server_version(MYSQL *mysql) Description Returns an integer that represents the MySQL server version. The value has the format XXYYZZ, where XX is the major version, YY is the release level (or minor version), and ZZ is the ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-ssl-session-reused.html
bool mysql_get_ssl_session_reused(MYSQL *mysql) Description Indicates whether the currently connected session is reusing a prior session. Return Values TRUE if a session was reused when establishing the TLS connection. FALSE if the session is not ...
Displaying 1901 to 1910 of 1965 total results