Search



Search Results
Displaying 3241 to 3250 of 4186 total results
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-client-info.html
For more information, see Section 3.6.12, “Obtaining the Server Version and Client Library Version”. const char * mysql_get_client_info(void) Description Returns a string that represents the MySQL client library version (for example, "9.7.0").
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-client-version.html
For more information, see Section 3.6.12, “Obtaining the Server Version and Client Library Version”. unsigned long mysql_get_client_version(void) Description Returns an integer that represents the MySQL client library version. The value has the ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-get-ssl-cipher.html
const char * mysql_get_ssl_cipher(MYSQL *mysql) Description mysql_get_ssl_cipher() returns the encryption cipher used for the given connection to the server. Return Values A string naming the encryption cipher used for the connection, or NULL if ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-next-result-nonblocking.html
It is the counterpart of the mysql_next_result() synchronous function, for use by applications that require asynchronous communication with the server. enum net_async_status mysql_next_result_nonblocking(MYSQL *mysql) Description Note ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-real-connect-nonblocking.html
It is the counterpart of the mysql_real_connect() synchronous function, for use by applications that require asynchronous communication with the server. enum net_async_status mysql_real_connect_nonblocking(MYSQL *mysql, const char *host, const char ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-real-escape-string-quote.html
The mysql argument must be a valid, open connection because character escaping depends on the character set in use by the server. unsigned long mysql_real_escape_string_quote(MYSQL *mysql, char *to, const char *from, unsigned long length, char ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-real-escape-string.html
The mysql argument must be a valid, open connection because character escaping depends on the character set in use by the server. unsigned long mysql_real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length) Description ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-real-query-nonblocking.html
It is the counterpart of the mysql_real_query() synchronous function, for use by applications that require asynchronous communication with the server. enum net_async_status mysql_real_query_nonblocking(MYSQL *mysql, const char *stmt_str, unsigned ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-reset-connection-nonblocking.html
It is the counterpart of the mysql_reset_connection() synchronous function, for use by applications that require asynchronous communication with the server. enum net_async_status mysql_reset_connection_nonblocking(MYSQL *mysql) Description Note ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-session-track-get-next.html
int mysql_session_track_get_next(MYSQL *mysql, enum enum_session_state_type type, const char **data, size_t *length) Description This function fetches additional session state-change information received from the server, following that retrieved by ...Following a successful call to mysql_session_track_get_first(), call mysql_session_track_get_next() repeatedly until it returns nonzero to indicate no more information is ...
Displaying 3241 to 3250 of 4186 total results