Search Results
https://dev.mysql.com/doc/connector-j/en/connector-j-versions.html
Here is some compatibility information for Connector/J 9.4: JDBC versions: Connector/J 9.4 implements JDBC 4.2. While Connector/J 9.4 works with libraries of higher JDBC versions, it returns a SQLFeatureNotSupportedException for any calls of ...For ...
https://dev.mysql.com/doc/connector-j/en/connector-j-whats-new.html
Version 9.4.0 is a new GA release version of the MySQL Connector/J. MySQL Connector/J 9.4.0 supersedes the 9.3 series and is recommended for use on production systems. It supports the Java Database Connectivity (JDBC) 4.2 API, and implements the X ...This release can be used against MySQL Server version 8.0 and ...
https://dev.mysql.com/doc/connector-j/en/connector-j-YEAR.html
How a value in a MySQL YEAR column is handled is controlled by the connection property yearIsDateType: If yearIsDateType is true (the default), YEAR is mapped to the Java data type java.sql.Date. Connector/J follows the same rules that govern how ...If yearIsDateType is false, YEAR is mapped to the Java data type ...
https://dev.mysql.com/doc/refman/8.4/en/alter-table.html
ALTER TABLE tbl_name [alter_option [, alter_option] ...] [partition_options] alter_option: { table_options | ADD [COLUMN] col_name column_definition [FIRST | AFTER col_name] | ADD [COLUMN] (col_name column_definition,...) | ADD {INDEX | KEY} ...
https://dev.mysql.com/doc/refman/8.4/en/apis-ruby.html
The mysql2 Ruby gem provides an API for connecting to MySQL, performing queries, and iterating through results; it is intended to support MySQL 5.7 and MySQL 8.0. For more information, see the mysql2 page at RubyGems.org or the project's GitHub ...
https://dev.mysql.com/doc/refman/8.4/en/audit-log-installation.html
This section describes how to install or uninstall MySQL Enterprise Audit, which is implemented using the audit log plugin and related elements described in Section 8.4.5.1, “Elements of MySQL Enterprise Audit”. For general information about ...
https://dev.mysql.com/doc/refman/8.4/en/audit-log-logging-configuration.html
Connect to the server and flush the log file so the plugin closes it and reopens a new audit.log file: SET GLOBAL audit_log_flush = ON; audit_log_flush is special in that its value remains OFF so that you need not disable it explicitly before ...
https://dev.mysql.com/doc/refman/8.4/en/backup-and-recovery.html
A client application is connected to the primary via MySQL Router. It is important to back up your databases so that you can recover your data and be up and running again in case problems occur, such as system crashes, hardware failures, or users ...
https://dev.mysql.com/doc/refman/8.4/en/backup-methods.html
If you are backing up a replica, you should back up its connection metadata repository and applier metadata repository (see Section 19.2.4, “Relay Log and Replication Metadata Repositories”) when you back up the replica's databases, regardless ...Making a Hot Backup with MySQL Enterprise Backup Customers of MySQL Enterprise Edition can use the MySQL Enterprise Backup product to do physical backups of entire instances or selected databases, tables, or ...
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 ...