Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-show-status.html
The text of the command last issued (previous to the show status --operation command), less any options or arguments. show status show status --cluster|-c cluster_name show status --operation|-o cluster_name show status --backup|-b cluster_name ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-simple.html
To create a backup, use the backup cluster command with the name of the cluster as an argument, similar to what is shown here: mcm> backup cluster mycluster; +-------------------------------+ | Command result | +-------------------------------+ | ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-create-configure.html
Once this is done, we modify the target cluster's configuration until it matches that of the wild cluster that we want to import. At a later point in the example, we also show how to test the configuration in a dry run before attempting to perform ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-verify-pid-files.html
On Linux, you can use the command shown here: $> ls ndb_*.pid ndb_50.pid Check the content of the matching .pid file using a pager or text editor. You must verify that each process in the wild cluster has a valid PID file. For purposes of this ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-interface-usage.html
If there are large text or binary data values to be sent, you can send them in chunks to the server using mysql_stmt_send_long_data(). To prepare and execute a statement, an application follows these steps: Create a prepared statement handler with ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-type-conversions.html
This enables you to distinguish BINARY from CHAR, VARBINARY from VARCHAR, and the BLOB types from the TEXT types. Prepared statements transmit data between the client and server using C language variables on the client side that correspond to SQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-bind-named-param.html
See Also See mysql_stmt_send_long_data() for sending long text or blob data in pieces. bool mysql_stmt_bind_named_param(MYSQL_STMT *stmt, MYSQL_BIND *binds, unsigned n_params, const char **names) Description mysql_stmt_bind_named_param() sets up ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-loadable-function.html
By default, the name of a function argument is the text of the expression used to specify the argument. The MySQL interface for loadable functions provides the following features and capabilities: Functions can return string, integer, or real ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-status-system-variables.html
Display of the server command-line help text is handled by compiling a DYNAMIC_ARRAY of all variables relevant to command-line options, sorting them, and then iterating through them to display each option. The server plugin interface enables ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins.html
Server-side plugins use the same plugin API that is used for the other server plugin types such as full-text parser or audit plugins (although with a different type-specific descriptor). Warning These plugins accept any non-empty password and the ...