https://dev.mysql.com/mysql-innodb-cluster-working-with-cluster.html
Connect to an instance which contains the cluster's metadata, then use the Cluster.forceQuorumUsingPartitionOf(instance) operation, which restores the cluster based on the metadata on instance, and then all the instances that are ONLINE from the ...
https://dev.mysql.com/mysql-kill.html
ER_DATA_OUT_OF_RANGE The server's internal thread ID counter has reached a value larger than 32 bits, at which point it rejects all mysql_kill() invocations. int mysql_kill(MYSQL *mysql, unsigned long pid) Note mysql_kill() is deprecated and will ...
https://dev.mysql.com/mysql-query.html
int mysql_query(MYSQL *mysql, const char *stmt_str) 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 ...
https://dev.mysql.com/mysql-real-escape-string-quote.html
(The function cannot tell whether the mode is enabled to determine the proper escaping character.) The string pointed to by from must be length bytes long. unsigned long mysql_real_escape_string_quote(MYSQL *mysql, char *to, const char *from, ...
https://dev.mysql.com/mysql-real-escape-string.html
The string pointed to by from must be length bytes long. unsigned long mysql_real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length) This function creates a legal SQL string for use in an SQL statement. Note ...
https://dev.mysql.com/mysql-real-query.html
mysql_real_query() executes the SQL statement pointed to by stmt_str, a string length bytes long. int mysql_real_query(MYSQL *mysql, const char *stmt_str, unsigned long length) Note mysql_real_query() is a synchronous function. Its asynchronous ...
https://dev.mysql.com/mysql-shell-tutorial-javascript-documents-collections.html
When you are using MySQL as a Document Store, collections are containers within a schema that you can create, list, and drop. Collections contain JSON documents that you can add, find, update, and remove. The examples in this section use the ...
https://dev.mysql.com/mysql-shell-tutorial-python-documents-collections.html
When you are using MySQL as a Document Store, collections are containers within a schema that you can create, list, and drop. Collections contain JSON documents that you can add, find, update, and remove. The examples in this section use the ...
https://dev.mysql.com/mysql-stmt-attr-set.html
arg should point to a variable that is set to the desired attribute value. bool mysql_stmt_attr_set(MYSQL_STMT *stmt, enum enum_stmt_attr_type option, const void *arg) Can be used to affect behavior for a prepared statement. This function may be ...
https://dev.mysql.com/mysql-stmt-init.html
The handler should be freed with mysql_stmt_close(), at which point the handler becomes invalid and should no longer be used. See also Section 28.6.8, “C API Prepared Statement Data Structures”, for more information.