https://dev.mysql.com/mysql-stmt-prepare.html
CR_SERVER_LOST The connection to the server was lost during the query CR_UNKNOWN_ERROR An unknown error occurred. int mysql_stmt_prepare(MYSQL_STMT *stmt, const char *stmt_str, unsigned long length) Given the statement handler returned by ...
https://dev.mysql.com/mysql-stmt-reset.html
CR_SERVER_LOST The connection to the server was lost during the query CR_UNKNOWN_ERROR An unknown error occurred. bool mysql_stmt_reset(MYSQL_STMT *stmt) Resets a prepared statement on client and server to state after prepare. It resets the ...
https://dev.mysql.com/mysql-stmt-send-long-data.html
The mysql variable is assumed to be a valid connection handler. bool mysql_stmt_send_long_data(MYSQL_STMT *stmt, unsigned int parameter_number, const char *data, unsigned long length) Enables an application to send parameter data to the server in ...
https://dev.mysql.com/mysql-stmt-store-result.html
CR_SERVER_LOST The connection to the server was lost during the query. int mysql_stmt_store_result(MYSQL_STMT *stmt) Result sets are produced by calling mysql_stmt_execute() to executed prepared statements for SQL statements such as SELECT, SHOW, ...
https://dev.mysql.com/mysql-store-result.html
CR_SERVER_LOST The connection to the server was lost during the query. Its asynchronous counterpart is mysql_store_result_nonblocking(), for use by applications that require asynchronous communication with the server. After invoking mysql_query() or ...
https://dev.mysql.com/mysql-use-result.html
CR_SERVER_LOST The connection to the server was lost during the query. MYSQL_RES *mysql_use_result(MYSQL *mysql) After invoking mysql_query() or mysql_real_query(), you must call mysql_store_result() or mysql_use_result() for every statement that ...
https://dev.mysql.com/mysqld-server.html
The following discussion covers these MySQL server configuration topics: Startup options that the server supports. You can specify these options on the command line, through configuration files, or both. These variables reflect the current state and ...
https://dev.mysql.com/mysqld.html
When MySQL server starts, it listens for network connections from client programs and manages access to databases on behalf of those clients. mysqld, also known as MySQL Server, is the main program that does most of the work in a MySQL installation. MySQL Server manages access to the MySQL data directory that contains databases and ...
https://dev.mysql.com/null-mysql-store-result.html
The data could not be read (an error occurred on the connection). It is possible for mysql_store_result() to return NULL following a successful call to mysql_query(). When this happens, it means one of the following conditions occurred: There was a ...
https://dev.mysql.com/optimize-numeric.html
If you are using numeric data, it is faster in many cases to access information from a database (using a live connection) than to access a text file. For unique IDs or other values that can be represented as either strings or numbers, prefer ...