Search Results
https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-distribution.html
To clone the Connector/C++ code from the source code repository located on GitHub at https://github.com/mysql/mysql-connector-cpp, use this command: git clone https://github.com/mysql/mysql-connector-cpp.git That command should create a ... To ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-prerequisites.html
To install Connector/C++ from source, the following system requirements must be satisfied: Build Tools MySQL Client Library Boost C++ Libraries SSL Support Build Tools You must have the cross-platform build tool CMake (3.0 or higher). MySQL Client ...You must have a C++ compiler that supports C++17 (as of Connector/C++ ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-authentication.html
Since Version 8.0.28 authenticationPlugins Comma-delimited list of classes that implement the interface 'com.mysql.cj.protocol.AuthenticationPlugin'. Since Version 5.1.19 disabledAuthenticationPlugins Comma-delimited list of authentication plugins ...If none is specified, it is authentication plugin dependent what user name is ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-performance-extensions.html
Default Value com.mysql.cj.PerConnectionLRUFactory Since Version 5.1.1 serverConfigCacheFactory Name of a class implementing 'com.mysql.cj.CacheAdapterFactory', which will be used to create caches for MySQL server configuration values.
https://dev.mysql.com/doc/connectors/en/connector-j-installing-maven.html
For example: <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>x.y.z</version> <exclusions> <exclusion> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </exclusion> ... You ...
https://dev.mysql.com/doc/connectors/en/connector-j-query-attributes.html
Connector/J supports Query Attributes when it has been enabled on the server by installing the query_attributes component (see Prerequisites for Using Query Attributes for details). Attributes are set for a query by using the setAttribute() method ...
https://dev.mysql.com/doc/connectors/en/connector-j-reference-dns-srv.html
For information about DNS SRV support in MySQL, see Connecting to the Server Using DNS SRV Records. When multiple MySQL instances provide the same service for your applications, DNS SRV records can be used to provide failover, load balancing, and ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-errors.html
When there is an error connecting, the MySqlConnection class will return a MySqlException object. The following code example shows how to manage the response of an application based on the actual error: C# Example ... Because connecting to an ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob-reading.html
After a file is loaded into the file table, we can use the MySqlDataReader class to retrieve it. The GetBytes method of the MySqlDataReader is used to load the BLOB into a byte array, which is then written to disk using a FileStream object. The ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-telemetry.html
Starting in Connector/NET 8.1.0, support for OTel is encapsulated in the MySQL.Data.OpenTelemetry NuGet package. Note OTel context forwarding works only with MySQL Enterprise Edition, a commercial product. OpenTelementry (OTel) standardizes ...