Search



Search Results
Displaying 1471 to 1480 of 1521 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-multiple-queries.html
These result sets are returned in the order that they are produced as the procedure executes. By default, mysql_real_query() and mysql_query() interpret their statement string argument as a single statement to be executed, and you process the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-call-statements.html
The row contains the values of the OUT and INOUT parameters in the order in which they are declared in the procedure parameter list. This section describes prepared-statement support in the C API for stored procedures executed using CALL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-change-user.html
Errors The same that you can get from mysql_real_connect(), plus: CR_COMMANDS_OUT_OF_SYNC Commands were executed in an improper order. bool mysql_change_user(MYSQL *mysql, const char *user, const char *password, const char *db) Description Changes ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-create-db.html
int mysql_create_db(MYSQL *mysql, const char *db) Description Creates the database named by the db parameter. Use mysql_real_query() or mysql_query() to issue an SQL CREATE DATABASE statement instead. CR_SERVER_LOST The connection to the server was ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-drop-db.html
int mysql_drop_db(MYSQL *mysql, const char *db) Description Drops the database named by the db parameter. Use mysql_real_query() or mysql_query() to issue an SQL DROP DATABASE statement instead. CR_SERVER_LOST The connection to the server was lost ...
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-kill.html
int mysql_kill(MYSQL *mysql, unsigned long pid) Description Note mysql_kill() is deprecated and is subject to removal in a future version of MySQL. mysql_kill() cannot handle values larger than 32 bits; to guard against killing the wrong thread, ...
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. wild may contain the wildcard ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-list-fields.html
MYSQL_RES * mysql_list_fields(MYSQL *mysql, const char *table, const char *wild) Description Note mysql_list_fields() is deprecated and is subject to removal in a future version of MySQL. Instead, use mysql_real_query() or mysql_query() to execute ...
Displaying 1471 to 1480 of 1521 total results