Search Results
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-viewing-tenancy-ocid.html
Viewing OCID of the Tenancy 21.4 Viewing OCID of the Tenancy Use the Oracle Cloud Infrastructure (OCI) Console to view and copy the OCID of the tenancy. Do the following to view and copy the OCID of the tenancy: Open the Oracle Cloud Infrastructure ...
https://dev.mysql.com/doc/relnotes/mysql-operator/en/index.html
Abstract This document contains release notes for the changes in each release of MySQL Operator for Kubernetes. For additional MySQL Operator for Kubernetes documentation, see MySQL Operator for Kubernetes. Updates to these notes occur as new ...
https://dev.mysql.com/doc/relnotes/mysql-operator/en/news-8-1-0-2.1.0.html
Functionality Added or Changed Bugs Fixed Functionality Added or Changed The cron jobs created by scheduled backups reference an operator image, and this operator image version now gets updated. (WL #15583) Added metric provider support for each ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-high-availability-and-clustering.html
autoReconnect Should the driver try to re-establish stale and/or dead connections? If enabled the driver will throw an exception for queries issued on a stale or dead connection, which belong to the current transaction, but will attempt reconnect ...The use of this feature is not recommended, because it has side effects related to session state and data consistency when applications don't handle SQLExceptions properly, and is only designed to be used when you are unable to configure your application to handle SQLExceptions resulting from dead and stale connections ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-performance-extensions.html
callableStmtCacheSize If 'cacheCallableStmts' is enabled, how many callable statements should be cached? Default Value 100 Since Version 3.1.2 metadataCacheSize The number of queries to cache 'ResultSetMetadata' for if 'cacheResultSetMetaData' is ...
https://dev.mysql.com/doc/connector-j/en/connector-j-installing-maven.html
You can also use Maven dependencies manager to install and configure the Connector/J library in your project. However, if you do not want to use the X DevAPI features, you may also want to add a dependency exclusion to avoid linking the unneeded ...
https://dev.mysql.com/doc/connector-j/en/connector-j-interceptors.html
An interceptor is a software design pattern that provides a transparent way to extend or modify some aspect of a program, similar to a user exit. With Connector/J, the interceptors are enabled and disabled by updating the connection string to refer ...
https://dev.mysql.com/doc/connector-j/en/connector-j-java-8.html
Connector/J 8.0 and beyond is created specifically to run on the Java 8 platform. While Java 8 is known to be strongly compatible with earlier Java versions, incompatibilities do exist, and code designed to work on Java 7 might need to be adjusted ...
https://dev.mysql.com/doc/connector-j/en/connector-j-overview.html
MySQL provides connectivity for client applications developed in the Java programming language with MySQL Connector/J. Connector/J implements the Java Database Connectivity (JDBC) API, as well as a number of value-adding extensions of it. MySQL ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-statements-callable.html
For more information on MySQL stored procedures, please refer to Using Stored Routines. Notice that you have to use JDBC escape syntax, and that the parentheses surrounding the parameter placeholders are not optional: Example 7.4 Connector/J: Using ...