Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-kill.html
CR_SERVER_LOST The connection to the server was lost during the query. 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 ...
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. CR_SERVER_LOST The connection to the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-list-processes.html
CR_SERVER_LOST The connection to the server was lost during the query. 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 ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-query.html
Its asynchronous counterpart is mysql_real_query_nonblocking(), for use by applications that require asynchronous communication with the server. CR_SERVER_LOST The connection to the server was lost during the query. int mysql_real_query(MYSQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reload.html
int mysql_reload(MYSQL *mysql) Description Asks the MySQL server to reload the grant tables. CR_SERVER_LOST The connection to the server was lost during the query. Use mysql_real_query() or mysql_query() to issue an SQL FLUSH PRIVILEGES statement ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stat.html
CR_SERVER_LOST The connection to the server was lost during the query. const char * mysql_stat(MYSQL *mysql) Description Returns a character string containing information similar to that provided by the mysqladmin status command. This includes ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-fetch.html
CR_SERVER_LOST The connection to the server was lost during the query. int mysql_stmt_fetch(MYSQL_STMT *stmt) Description mysql_stmt_fetch() returns the next row in the result set. It can be called only while the result set exists; that is, after a ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-send-long-data.html
bool mysql_stmt_send_long_data(MYSQL_STMT *stmt, unsigned int parameter_number, const char *data, unsigned long length) Description Enables an application to send parameter data to the server in pieces (or “chunks”). It can be called multiple ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-store-result.html
By default, result sets for successfully executed prepared statements are not buffered on the client and mysql_stmt_fetch() fetches them one at a time from the server. CR_SERVER_LOST The connection to the server was lost during the query. int ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-store-result.html
Its asynchronous counterpart is mysql_store_result_nonblocking(), for use by applications that require asynchronous communication with the server. CR_SERVER_LOST The connection to the server was lost during the query. MYSQL_RES * ...