Search Results
https://dev.mysql.com/doc/refman/8.4/en/multifactor-authentication.html
That is, it places constraints on CREATE USER and ALTER USER statements with respect to multifactor authentication. CREATE USER and ALTER USER have syntax enabling multiple authentication methods to be specified for new accounts, and for adding, ...
https://dev.mysql.com/doc/refman/8.4/en/pam-pluggable-authentication.html
To refer to the PAM authentication plugin in the IDENTIFIED WITH clause of a CREATE USER statement, use the name authentication_pam. For example: CREATE USER user IDENTIFIED WITH authentication_pam AS 'auth_string'; The authentication string ...
https://dev.mysql.com/doc/mysql-router/9.4/en/mysqlrouter.html
If additional instances are desired, use the --directory option to create self-contained MySQL Router installations. The configuration file is regenerated from scratch and the MySQL Router's metadata server account is recreated, although with the ...
https://dev.mysql.com/doc/connectors/en/connector-j-config-failover.html
The connection errors are, by default, propagated to the client, which has to handle them by, for example, recreating the working objects (Statement, ResultSet, etc.) and restarting the processes. A failover happens when connection-related errors ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-executemany.html
Syntax: cursor.executemany(operation, seq_of_params) This method prepares a database operation (query or command) and executes it against all parameter sequences or mappings found in the sequence seq_of_params. In most cases, the executemany() ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-executemany.html
Syntax: cursor.executemany(operation, seq_of_params) This method prepares a database operation (query or command) and executes it against all parameter sequences or mappings found in the sequence seq_of_params. In most cases, the executemany() ...
https://dev.mysql.com/doc/connector-j/en/connector-j-config-failover.html
The connection errors are, by default, propagated to the client, which has to handle them by, for example, recreating the working objects (Statement, ResultSet, etc.) and restarting the processes. A failover happens when connection-related errors ...
https://dev.mysql.com/doc/refman/8.4/en/charset-literal.html
Example 1: mysql> SET NAMES latin1; mysql> SELECT HEX('à\n'), HEX(_sjis'à\n'); +------------+-----------------+ | HEX('à\n') | HEX(_sjis'à\n') | +------------+-----------------+ | E00A | E00A | +------------+-----------------+ Here, à ... Every ...
https://dev.mysql.com/doc/refman/8.4/en/charset-unicode.html
The UTF-8 (Unicode Transformation Format with 8-bit units) method for encoding Unicode data is implemented according to RFC 3629, which describes encoding sequences that take from one to four bytes. The idea of UTF-8 is that various Unicode ... The ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-commands.html
The special character sequences that can be used in the prompt are described later in this section. The string for defining the prompt can contain the following special sequences. There is some overlap in the set of permissible prompt options and ...