Search Results
https://dev.mysql.com/doc/connectors/en/connector-cpp-apps-general-considerations.html
This section discusses general considerations to keep in mind when building Connector/C++ applications. For information that applies to particular platforms, see the section that applies to your platform in Section 2.5.2, “Building Connector/C++ ...Commands shown here are as given from the command line (for example, as invoked from a ...
https://dev.mysql.com/doc/connectors/en/connector-j-binary-installation.html
Obtaining and Using the Binary Distribution Packages Different types of binary distribution packages for Connector/J are available from the Connector/J Download page. The following explains how to use each type of the packages to install ...Using ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-metadata.html
Setting this property to "false" decouples Connector/J from its pre-JDBC4 behaviours for 'DatabaseMetaData.getProcedures()' and 'DatabaseMetaData.getProcedureColumns()', forcing them to return metadata for procedures only. Default Value true Since ... getProceduresReturnsFunctions Pre-JDBC4 'DatabaseMetaData' API has only the 'getProcedures()' and 'getProcedureColumns()' methods, so they return metadata info for both stored procedures and ...
https://dev.mysql.com/doc/connectors/en/connector-j-fractional-seconds.html
However, when Connector/J inserted a java.sql.TIME into the server as a MySQL TIME value, the fractional seconds were always truncated. To allow the fractional seconds to be sent to the server, a connection property, sendFractionalSecondsForTime, ...
https://dev.mysql.com/doc/connectors/en/connector-j-interceptors.html
With Connector/J, the interceptors are enabled and disabled by updating the connection string to refer to different sets of interceptor classes that you instantiate. The connection properties that control the interceptors are explained in Section ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-spring-config-jdbctemplate.html
The template classes handle obtaining and releasing a connection for data access when one is needed. Spring makes extensive use of the Template method design pattern (see Template Method Pattern). Our immediate focus will be on the JdbcTemplate and ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-tomcat.html
First, install the .jar file that comes with Connector/J in $CATALINA_HOME/common/lib so that it is available to all applications installed in the container. It also has the advantage that if using ReplicationConnection or LoadBalancedConnection ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-authentication-user-plugin.html
Advanced users with special security requirements can create their own authentication plugins for MySQL Connector/NET applications. /// </summary> /// <returns>An string with the user name</returns> /// <remarks>Default implementation returns the ...For background and usage information about MySQL authentication plugins, see Authentication Plugins and Writing Authentication ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-binary-issues.html
In these situations, it becomes practically impossible for the connector to be able to correctly identify the correct metadata. However, some existing applications may encounter issues with this change and can use a connection string option to ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob-writing.html
To write a file to a database, we need to convert the file to a byte array, then use the byte array as a parameter to an INSERT query. After assigning the byte array as a parameter of the MySqlCommand object, the ExecuteNonQuery method is called ...