Search Results
https://dev.mysql.com/doc/mysql-shell/9.7/en/reboot-outage.html
If this process fails, and the cluster metadata has become badly corrupted, you might need to drop the metadata and create the cluster again from scratch. If your cluster experiences a complete outage you can reconfigure it using ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/restore-cluster-from-quorum-loss.html
Important This operation is potentially dangerous because it can create a split-brain scenario if incorrectly used and should be considered a last resort. If an instance (or instances) fail, then a cluster can lose its quorum, which is the ability ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/retrieving-a-handler.html
For example, when you create a cluster using dba.createCluster(), the operation returns a Cluster object which can be assigned to a variable. When you are working with AdminAPI, you use a handler object which represents the InnoDB Cluster, InnoDB ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-multiple-queries.html
By default, mysql_real_query() and mysql_query() interpret their statement string argument as a single statement to be executed, and you process the result according to whether the statement produces a result set (a set of rows, as for SELECT) or ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-prepared-call-statements.html
This section describes prepared-statement support in the C API for stored procedures executed using CALL statements: Stored procedures executed using prepared CALL statements can be used in the following ways: A stored procedure can produce any ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-prepared-statement-data-structures.html
A handler is created by calling mysql_stmt_init(), which returns a pointer to a MYSQL_STMT. Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-prepared-statement-date-handling.html
To send temporal data values, create a prepared statement using mysql_stmt_prepare(). The binary (prepared statement) protocol enables you to send and receive date and time values (DATE, TIME, DATETIME, and TIMESTAMP), using the MYSQL_TIME ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-prepared-statement-function-descriptions.html
To prepare and execute queries, use the functions described in detail in the following sections. All functions that operate with a MYSQL_STMT structure begin with the prefix mysql_stmt_.
https://dev.mysql.com/doc/c-api/9.7/en/c-api-prepared-statement-interface-usage.html
To prepare and execute a statement, an application follows these steps: Create a prepared statement handler with mysql_stmt_init(). To prepare the statement on the server, call mysql_stmt_prepare() and pass it a string containing the SQL statement.
https://dev.mysql.com/doc/c-api/9.7/en/c-api-thread-function-descriptions.html
To create a threaded client, use the functions described in the following sections.