Search



Search Results
Displaying 1091 to 1100 of 1136 total results
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-change-user.html
Pass a db parameter of NULL if you do not want to have a default database. bool mysql_change_user(MYSQL *mysql, const char *user, const char *password, const char *db) Description Changes the user and causes the database specified by db to become ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-client-find-plugin.html
struct st_mysql_client_plugin * mysql_client_find_plugin(MYSQL *mysql, const char *name, int type) Description Returns a pointer to a loaded plugin, loading the plugin first if necessary. An error occurs if the type is invalid or the plugin cannot ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-client-register-plugin.html
struct st_mysql_client_plugin * mysql_client_register_plugin(MYSQL *mysql, struct st_mysql_client_plugin *plugin) Description Adds a plugin structure to the list of loaded plugins. Specify the arguments as follows: mysql: A pointer to a MYSQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-ssl-cipher.html
Return Values A string naming the encryption cipher used for the connection, or NULL if the connection is not encrypted. const char * mysql_get_ssl_cipher(MYSQL *mysql) Description mysql_get_ssl_cipher() returns the encryption cipher used for the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-ssl-session-data.html
This function returns a session data string and provides the length of the string in out_len (if non-NULL). Otherwise, it returns nullptr to indicate the expected session data is not possible or the connection is not in the right state. void * ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-insert-id.html
This is true whether the value is automatically generated by storing the special values NULL or 0 into the column, or is an explicit nonspecial value. uint64_t mysql_insert_id(MYSQL *mysql) Description Returns the value generated for an ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-list-processes.html
MYSQL_RES * mysql_list_processes(MYSQL *mysql) Description Note mysql_list_processes() is deprecated and is subject to removal in a future version of MySQL. Instead, use mysql_real_query() or mysql_query() to execute a SHOW PROCESSLIST statement.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-load-plugin.html
struct st_mysql_client_plugin * mysql_load_plugin(MYSQL *mysql, const char *name, int type, int argc, ...) Description Loads a MySQL client plugin, specified by name and type. An error occurs if the type is invalid or the plugin cannot be loaded.
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. Normally, the string must consist of a single SQL statement without a terminating semicolon (;) or \g. If ...
Displaying 1091 to 1100 of 1136 total results