Search



Search Results
Displaying 161 to 170 of 462 total results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-interface-usage.html
This section describes how to use the C API asynchronous interface. In this discussion, asynchronous and nonblocking are used as synonyms, as are synchronous and blocking. The asynchronous C API functions cover operations that might otherwise block ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-type-codes.html
The buffer_type member of MYSQL_BIND structures indicates the data type of the C language variable bound to a statement parameter or result set column. For input, buffer_type indicates the type of the variable containing the value to be sent to the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-fields.html
MYSQL_FIELD * mysql_fetch_fields(MYSQL_RES *result) Description Returns an array of all MYSQL_FIELD structures for a result set. Each structure provides the field definition for one column of the result set. For metadata-optional connections, this ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-option.html
int mysql_get_option(MYSQL *mysql, enum mysql_option option, const void *arg) Description Returns the current value of an option settable using mysql_options(). The option argument is the option for which you want its value. The arg argument is a ...
https://dev.mysql.com/doc/c-api/8.4/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/8.4/en/mysql-get-ssl-session-data.html
void * mysql_get_ssl_session_data(MYSQL *, unsigned int n_ticket, unsigned int *out_len) Description mysql_get_ssl_session_data() permits SSL session reuse by extracting a ticket from an established session and submitting that ticket when ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-options4.html
int mysql_options4(MYSQL *mysql, enum mysql_option option, const void *arg1, const void *arg2) Description mysql_options4() is similar to mysql_options() but has an extra fourth argument so that two values can be passed for the option specified in ...
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 ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-connect.html
MYSQL * mysql_real_connect(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 mysql_real_connect() is a synchronous function.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-session-track-get-first.html
int mysql_session_track_get_first(MYSQL *mysql, enum enum_session_state_type type, const char **data, size_t *length) Description MySQL implements a session tracker mechanism whereby the server returns information about session state changes to ...
Displaying 161 to 170 of 462 total results