Search Results
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-authentication.html
Since Version 8.0.28 authenticationPlugins Comma-delimited list of classes that implement the interface 'com.mysql.cj.protocol.AuthenticationPlugin'. Since Version 5.1.19 disabledAuthenticationPlugins Comma-delimited list of authentication plugins ...If none is specified, it is authentication plugin dependent what user name is ...
https://dev.mysql.com/doc/connector-j/en/connector-j-installing-maven.html
For example: <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>x.y.z</version> <exclusions> <exclusion> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </exclusion> ... You ...
https://dev.mysql.com/doc/connector-j/en/connector-j-reference-dns-srv.html
For information about DNS SRV support in MySQL, see Connecting to the Server Using DNS SRV Records. When multiple MySQL instances provide the same service for your applications, DNS SRV records can be used to provide failover, load balancing, and ...
https://dev.mysql.com/doc/refman/8.4/en/account-locking.html
MySQL supports locking and unlocking user accounts using the ACCOUNT LOCK and ACCOUNT UNLOCK clauses for the CREATE USER and ALTER USER statements: When used with CREATE USER, these clauses specify the initial locking state for a new account. In ...
https://dev.mysql.com/doc/refman/8.4/en/adding-collation-simple-8bit.html
This section describes how to add a simple collation for an 8-bit character set by writing the <collation> elements associated with a <charset> character set description in the MySQL Index.xml file. You can check the variable value as follows, ...
https://dev.mysql.com/doc/refman/8.4/en/binary-varbinary.html
Note Within the mysql client, binary strings display using hexadecimal notation, depending on the value of the --binary-as-hex. For more information about that option, see Section 6.5.1, “mysql — The MySQL Command-Line Client”. The BINARY and ...
https://dev.mysql.com/doc/refman/8.4/en/clone-plugin.html
The clone plugin permits cloning data locally or from a remote MySQL server instance. The cloned data comprises a fully functional data directory, which permits using the clone plugin for MySQL server provisioning. Figure 7.1 Local Cloning ...
https://dev.mysql.com/doc/refman/8.4/en/component-loading.html
MySQL supports manual component loading at runtime and automatic loading during server startup. For example: INSTALL COMPONENT 'file://component_validate_password'; UNINSTALL COMPONENT 'file://component_validate_password'; A loader service handles ... Components must be loaded into the server before they can be ...
https://dev.mysql.com/doc/refman/8.4/en/declare-condition.html
DECLARE condition_name CONDITION FOR condition_value condition_value: { mysql_error_code | SQLSTATE [VALUE] sqlstate_value } The DECLARE ... It can take the following forms: mysql_error_code: An integer literal indicating a MySQL error code. Do not ...CONDITION statement declares a named error condition, associating a name with a condition that needs specific ...
https://dev.mysql.com/doc/refman/8.4/en/document-store-concepts.html
This section explains the concepts introduced as part of using MySQL as a document store. JSON Document Collection CRUD Operations JSON Document A JSON document is a data structure composed of key-value pairs and is the fundamental structure for ...