Search



Search Results
Displaying 1131 to 1140 of 5414 total results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-binlog-fetch.html
int mysql_binlog_fetch(MYSQL *mysql, MYSQL_RPL *rpl) Description Fetch one event from the replication event stream. After a successful call, the size member indicates the event size, which is 0 for an EOF event. For a non-EOF event, size is greater ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-close.html
mysql_close() also deallocates the connection handler pointed to by mysql if the handler was allocated automatically by mysql_init() or mysql_connect().
https://dev.mysql.com/doc/c-api/8.4/en/mysql-connect.html
MYSQL * mysql_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd) Description This function is deprecated.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-dump-debug-info.html
int mysql_dump_debug_info(MYSQL *mysql) Description Instructs the server to write debugging information to the error log. CR_SERVER_LOST The connection to the server was lost during the query.
https://dev.mysql.com/doc/c-api/8.4/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, "8.4.6"). The function value is the version of MySQL that provides the client library. Return Values A character ...
https://dev.mysql.com/doc/c-api/8.4/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 function value is the version of MySQL that provides the client library. Return Values An integer that represents the ...The value has the format XXYYZZ, where XX is the major version, YY is the release level (or minor version), and ZZ is the sub-version within the release level: major_version*10000 + release_level*100 + sub_version For example, "08.4.6" is returned as ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-connect-nonblocking-stage.html
enum connect_stage mysql_get_connect_nonblocking_stage(MYSQL *mysql) Description mysql_get_connect_nonblocking_stage() provides a function to determine which stage of the mysql_real_connect_nonblocking state machine is in currently. This function ...
https://dev.mysql.com/doc/c-api/8.4/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/8.4/en/mysql-list-dbs.html
MYSQL_RES * mysql_list_dbs(MYSQL *mysql, const char *wild) Description Returns a result set consisting of database names on the server that match the simple regular expression specified by the wild parameter. Calling mysql_list_dbs() is similar to ...wild may contain the wildcard characters % or _, or may be a NULL pointer to match all ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-list-tables.html
MYSQL_RES * mysql_list_tables(MYSQL *mysql, const char *wild) Description Returns a result set consisting of table names in the current database that match the simple regular expression specified by the wild parameter. Calling mysql_list_tables() ...wild may contain the wildcard characters % or _, or may be a NULL pointer to match all ...
Displaying 1131 to 1140 of 5414 total results