Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-result-sets.html
clobberStreamingResults This will cause a streaming result set to be automatically closed, and any outstanding data still streaming from the server to be discarded if another query is executed before all the data has been read from the server.
https://dev.mysql.com/doc/connectors/en/connector-j-interceptors.html
In these kinds of interceptor classes, you might change or augment the processing done by certain kinds of statements, such as automatically checking for queried data in a memcached server, rewriting slow queries, logging information about statement ... 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 ...
https://dev.mysql.com/doc/connectors/en/connector-j-session-state-tracker.html
With getSessionStateChanges(), some changes returned by the intermediate queries issued by Connector/J could be missed. Connector/J can receive information on client session state changes tracked by the server if the tracking has been enabled on ...
https://dev.mysql.com/doc/connectors/en/connector-j-source-replica-replication-connection.html
It can automatically send queries to a read/write source host, or a failover or round-robin loadbalanced set of replicas based on the state of Connection.getReadOnly(). This section describe a number of features of Connector/J's support for ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-telemetry.html
OpenTelementry (OTel) standardizes instrumentation, generation, collecting and exporting telemetry data to be consumed by an Observability backend. Starting in Connector/NET 8.1.0, support for OTel is encapsulated in the MySQL.Data.OpenTelemetry ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming.html
MySQL Connector/NET comprises several classes that are used to connect to the database, execute queries and statements, and manage query results. The following are the major classes of Connector/NET: MySqlConnection: Represents an open connection ...
https://dev.mysql.com/doc/connectors/en/connector-net-ref-common-dnsclient.html
A four bit field that specifies kind of query in this message. This value is set by the originator of a query and copied into the response.
https://dev.mysql.com/doc/connectors/en/connector-net-ref-mysqlclient.html
Classes Class Description AuthenticationPluginConfigurationElement Retrieves the authentication plugin configuration from the configuration file. BaseCommandInterceptor Provides a means of enhancing or replacing SQL commands through the connection ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-stored-procedures.html
This technique avoids duplicating database code, saving time and effort when you make updates due to schema changes, tune the performance of queries, or add new database operations for logging, security, and so on. Putting database-intensive ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-functionality-last-insert-id.html
Obtaining the value of column that uses AUTO_INCREMENT after an INSERT statement can be achieved in a number of different ways. To obtain the value immediately after an INSERT, use a SELECT query with the LAST_INSERT_ID() function. For example, ...