Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-next-result-nonblocking.html
enum net_async_status mysql_next_result_nonblocking(MYSQL *mysql) Description Note mysql_next_result_nonblocking() is an asynchronous function. It is the counterpart of the mysql_next_result() synchronous function, for use by applications that ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-next-result.html
int mysql_next_result(MYSQL *mysql) Description Note mysql_next_result() is a synchronous function. Its asynchronous counterpart is mysql_next_result_nonblocking(), for use by applications that require asynchronous communication with the server. If ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-query.html
int mysql_query(MYSQL *mysql, const char *stmt_str) Description Executes the SQL statement pointed to by the null-terminated string stmt_str. mysql_query() cannot be used for statements that contain binary data; you must use mysql_real_query() ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-connect-nonblocking.html
enum net_async_status mysql_real_connect_nonblocking(MYSQL *mysql, const char *host, const char *user, const char *passwd, const char *db, unsigned int port, const char *unix_socket, unsigned long client_flag) Description Note ...For general ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-query-nonblocking.html
enum net_async_status mysql_real_query_nonblocking(MYSQL *mysql, const char *stmt_str, unsigned long length) Description Note mysql_real_query_nonblocking() is an asynchronous function. It is the counterpart of the mysql_real_query() synchronous ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-query.html
int mysql_real_query(MYSQL *mysql, const char *stmt_str, unsigned long length) Description Note mysql_real_query() is a synchronous function. Its asynchronous counterpart is mysql_real_query_nonblocking(), for use by applications that require ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reset-connection-nonblocking.html
enum net_async_status mysql_reset_connection_nonblocking(MYSQL *mysql) Description Note mysql_reset_connection_nonblocking() is an asynchronous function. It is the counterpart of the mysql_reset_connection() synchronous function, for use by ...For ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-set-server-option.html
int mysql_set_server_option(MYSQL *mysql, enum enum_mysql_set_option option) Description Enables or disables an option for the connection. Option Description MYSQL_OPTION_MULTI_STATEMENTS_ON Enable multiple-statement support ...CR_SERVER_LOST The ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stat.html
const char * mysql_stat(MYSQL *mysql) Description Returns a character string containing information similar to that provided by the mysqladmin status command. This includes uptime in seconds and the number of running threads, questions, reloads, ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-store-result-nonblocking.html
enum net_async_status mysql_store_result_nonblocking(MYSQL *mysql, MYSQL_RES **result) Description Note mysql_store_result_nonblocking() is an asynchronous function. It is the counterpart of the mysql_store_result() synchronous function, for use by ...For general information about writing asynchronous C API applications, see Chapter 7, C API Asynchronous ...