Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-time-instants.html
To achieve these solutions, the following connection properties have been introduced in Connector/J since release 8.0.23: preserveInstants={true|false}: Whether to attempt to preserve time instant values by adjusting timestamps. Background A time ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-j2ee-concepts-managing-load-balanced-connections.html
Connector/J has long provided an effective means to distribute read/write load across multiple MySQL server instances for Cluster or source-source replication deployments. In-process transactions are not lost, and no application exceptions are ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-spring-config-connpooling.html
In many situations, such as web applications, there will be a large number of small database transactions. When this is the case, it usually makes sense to create a pool of database connections available for web requests as needed. Although MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-spring-config.html
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="properties" ref="dbProps"/> </bean> Now that we have our MySQL data source configured and ready to go, we write some Java code to access it. The ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-statements-callable.html
Notice that you have to use JDBC escape syntax, and that the parentheses surrounding the parameter placeholders are not optional: Example 3.7 Connector/J: Using Connection.prepareCall() import java.sql.CallableStatement; ... For more information on ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-tomcat.html
The following instructions are based on the instructions for Tomcat-5.x, available at http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html which is current at the time this document was written. First, install the .jar file ...
https://dev.mysql.com/doc/connectors/en/connector-j-using-pam.html
For PAM authentication to work, you must have the following: A MySQL server that supports PAM authentication. Java applications using Connector/J can connect to MySQL servers that use the pluggable authentication module (PAM) authentication scheme.
Connectors and APIs Manual :: 3.5.12.4 Connecting Using Web Authentication (WebAuthn) Authentication
https://dev.mysql.com/doc/connectors/en/connector-j-WebAuthn-authentication.html
Depending on the device, you may have to perform gesture action multiple times. Web Authentication (WebAuthn) enables user authentication for MySQL Server using devices such as smart cards, security keys, and biometric readers. WebAuthn enables ...
https://dev.mysql.com/doc/connectors/en/connector-net-async-methods.html
The Task-based Asynchronous Pattern (TAP) is a pattern for asynchrony in the .NET Framework. It is based on the Task and Task<TResult> types in the System.Threading.Tasks namespace, which are used to represent arbitrary asynchronous operations. The ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-string.html
In each key-value pair, the option name and its corresponding value are joined by an equal sign. For the list of option names to use in the connection string, see Section 4.4.5, “Connector/NET Connection Options Reference”. The following is a ...