Search Results
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-access-methods.html
After signing in and creating a DB System, you can also access MySQL HeatWave on AWS from a MySQL client or application. A MySQL user account is required; see Connecting from a Client. Accessing MySQL HeatWave on AWS 2.1 Accessing MySQL HeatWave on ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-privatelink-limitations.html
PrivateLink Limitations 6.5 PrivateLink Limitations You can only create one Query PrivateLink and one Egress PrivateLink per DB System. When you configure a user to connect to a DB System over a PrivateLink, you cannot specify public or private IP ...You cannot change the value of the configuration variable, max_connect_errors of you DB ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-x-protocol-and-x-devapi.html
Default Value 10000 Since Version 8.0.13 xdevapi.connection-attributes An X DevAPI-specific comma-delimited list of user-defined "key=value" pairs, in addition to standard X Protocol-defined "key=value" pairs, to be passed to MySQL Server for ...If ...
https://dev.mysql.com/doc/connector-j/en/connector-j-installing-upgrading.html
This section has information for users who are upgrading from one version of Connector/J to another, or to a new version of the MySQL server that supports a more recent level of JDBC. Depending on the platform and the way you used to install ...A ...
https://dev.mysql.com/doc/connector-j/en/connector-j-named-pipe.html
As a workaround, the MySQL Server that Connector/J wants to connect to must be started with the system variable named_pipe_full_access_group, which specifies a Windows local group containing the user by which the client application JVM (and thus ...
https://dev.mysql.com/doc/connector-j/en/connector-j-schema-validation.html
This is done by specifying a JSON Schema during Collection creation or modification; schema validation is then performed by the server at a document creation or update, and an error is returned if the document does not validate against the assigned ... When working with MySQL Server 8.0.19 and later: Schema validation can be configured for a Collection, so that documents in the Collection are validated against a schema before they can be inserted or ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-troubleshooting.html
Consider the following series of statements for example: conn.createStatement().execute( "UPDATE checking_account SET balance = balance - 1000.00 WHERE customer='Smith'"); conn.createStatement().execute( "UPDATE savings_account SET balance = balance ... This section explains the symptoms and resolutions for the most commonly encountered issues with applications using MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/ansi-diff-select-into-table.html
For example: INSERT INTO tbl_temp2 (fld_id) SELECT tbl_temp1.fld_order_id FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100; Alternatively, you can use SELECT ... The same syntax can also be used inside stored routines using cursors and local ...
https://dev.mysql.com/doc/refman/8.4/en/audit-log-legacy-filtering.html
The value for either variable can be NULL or a string containing one or more comma-separated account names, each in user_name@host_name format. Modifications to audit_log_include_accounts or audit_log_exclude_accounts affect only connections created ... Note This section describes legacy audit log filtering, which applies if the audit_log plugin is installed without the accompanying audit tables and functions needed for rule-based ...
https://dev.mysql.com/doc/refman/8.4/en/batch-mode.html
In the previous sections, you used mysql interactively to enter statements and view the results. If you want the script to continue even if some of the statements in it produce errors, you should use the --force command-line option. Why use a ...