https://dev.mysql.com/mysql-cluster-security-mysql-privileges.html
The SQL statements used to grant and revoke privileges on NDB tables, databases containing such tables, and columns within such tables are identical in all respects with the GRANT and REVOKE statements used in connection with database objects ... In ...
https://dev.mysql.com/mysql-cluster-thread-states.html
Waiting for event from ndbcluster The server is acting as an SQL node in an NDB Cluster, and is connected to a cluster management node. Committing events to binlog Opening mysql.ndb_apply_status Processing events The thread is processing events for ...
https://dev.mysql.com/mysql-config.html
mysql_config provides you with useful information for compiling your MySQL client and connecting it to MySQL. It is a shell script, so it is available only on Unix and Unix-like systems. Note pkg-config can be used as an alternative to mysql_config ...
https://dev.mysql.com/mysql-create-db.html
CR_SERVER_LOST The connection to the server was lost during the query. int mysql_create_db(MYSQL *mysql, const char *db) Creates the database named by the db parameter.
https://dev.mysql.com/mysql-drop-db.html
CR_SERVER_LOST The connection to the server was lost during the query. int mysql_drop_db(MYSQL *mysql, const char *db) Drops the database named by the db parameter. if(mysql_drop_db(&mysql, "my_database")) fprintf(stderr, "Failed to drop the ...
https://dev.mysql.com/mysql-eof.html
Because an error may occur on the connection during this process, a NULL return value from mysql_fetch_row() does not necessarily mean the end of the result set was reached normally. mysql_eof() determines whether the last row of a result set has ...
https://dev.mysql.com/mysql-errno.html
unsigned int mysql_errno(MYSQL *mysql) For the connection specified by mysql, mysql_errno() returns the error code for the most recently invoked API function that can succeed or fail. Client error message numbers are listed in the MySQL errmsg.h ...
https://dev.mysql.com/mysql-error.html
const char *mysql_error(MYSQL *mysql) For the connection specified by mysql, mysql_error() returns a null-terminated string containing the error message for the most recently invoked API function that failed. If a function did not fail, the return ...
https://dev.mysql.com/mysql-fetch-field-direct.html
For metadata-optional connections, this function returns NULL when the resultset_metadata system variable is set to NONE. MYSQL_FIELD *mysql_fetch_field_direct(MYSQL_RES *result, unsigned int fieldnr) Given a field number fieldnr for a column ...
https://dev.mysql.com/mysql-fetch-field.html
For metadata-optional connections, this function returns NULL when the resultset_metadata system variable is set to NONE. MYSQL_FIELD *mysql_fetch_field(MYSQL_RES *result) Returns the definition of one column of a result set as a MYSQL_FIELD ...