Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/server-repository-options.html
This option must be specified for any restore operations, except for partial restores (see Section 5.1.4, “Table-Level Recovery (TLR)” for details). For restores: The directory where the default InnoDB undo tablespaces, as well as any ... These ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-client-commands.html
For example, for the restore cluster command, the -p (lowercase) is the short form of the --parallelism option, but -P (uppercase) is the short form of the --privilege-tables option. You are not required to follow this convention if you do not wish ...These commands are issued to the management agent using the mysql client program included with the MySQL NDB Cluster distribution (for information about the mysql client not specific to using MySQL Cluster Manager, see mysql — The MySQL Command-Line ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-set.html
Setting Up Encryption NDB Cluster 8.0.31 and later supports transparent data encryption (TDE) for user data stored in NDB tables (see File System Encryption for NDB Cluster); this is also supported by MySQL Cluster Manager 8.0.31 and later.
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-password-validation-plugins.html
To verify plugin installation, examine the INFORMATION_SCHEMA.PLUGINS table or use the SHOW PLUGINS statement. This section describes how to write a server-side password-validation plugin. The instructions are based on the source code in the ...
https://dev.mysql.com/doc/mysql-router/9.4/en/mysql-router-configuration-file-syntax.html
The configuration file format resembles the traditional INI file format with sections and options, but with a few additional extensions. Comment lines start with a hash (#) or semicolon (;) and continue to the end of the line. Sections Each ...
https://dev.mysql.com/doc/workbench/en/wb-connection-properties.html
This is used, for example, when drawing MyISAM tables with a visual relationship, but with no foreign keys. To make the relationship visible again, you must expand the table object relating to the relationship in the Layers palette and select the ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-blob-clob-processing.html
blobSendChunkSize Chunk size to use when sending BLOB/CLOBs via server-prepared statements. Note that this value cannot exceed the value of 'maxAllowedPacket' and, if that is the case, then this value will be corrected automatically. Since Version ...
https://dev.mysql.com/doc/connectors/en/connector-net-medium-trust-gac.html
myconnString.IncludeSecurityAsserts = true; Define the MySqlConnection to use: MySqlConnection myconn = new MySqlConnection(myconnString.ConnectionString); myconn.Open(); Retrieve some data from your tables: MySqlCommand cmd = new ... If the library ...
https://dev.mysql.com/doc/connectors/en/connector-net-ref-mysqlclient.html
MySqlCommandBuilder Automatically generates single-table commands used to reconcile changes made to a data set with the associated MySQL database. Classes Class Description AuthenticationPluginConfigurationElement Retrieves the authentication ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-mysqlscript.html
To run the example programs in this tutorial, set up a simple test database and table using the mysql Command-Line Client or MySQL Workbench. Commands for the mysql Command-Line Client are given here: CREATE DATABASE TestDB; USE TestDB; CREATE TABLE ... This tutorial teaches you how to use the MySqlScript ...