Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-8-0-connection-options.html
For instructions about how to use connection strings, see Section 4.1, “Creating a Connector/NET Connection String”. An error is raised if both dns-srv=false and the URI scheme of mysqlx+srv:// are combined to create a conflicting connection ...
https://dev.mysql.com/doc/connector-net/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. Creating the Authentication Plugin Class You put the authentication plugin logic inside a new class derived from ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-efmodel-ddl.html
This tutorial demonstrates how to create MySQL DDL from an Entity Framework model. In the Generate Database Wizard dialog select an existing connection, or create a new connection to a server. You have seen how to create MySQL DDL code from an ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-stored-procedures.html
Before working through this tutorial, familiarize yourself with the CREATE PROCEDURE and CREATE FUNCTION statements that create different kinds of stored routines. For the purposes of this tutorial, you will create a simple stored procedure to see ...Putting database-intensive operations into stored procedures lets you define an API for your database ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html
The size of a connection pool is configurable at pool creation time. To create a connection pool implicitly: Open a connection and specify one or more pool-related arguments (pool_name, pool_size). With either the pool_name or pool_size argument ...
https://dev.mysql.com/doc/internals/en/event-flags.html
This flag should be set for any event that does not need to have the default database set to function correctly, such as CREATE DATABASE and DROP DATABASE. Event headers for v3 format and up contain event flags in the two flag bytes at position ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndb.html
This memory is held for the lifetime of the object, and once used in this way by the Ndb object, the only way to free this memory is to destroy the object (and then to create a new instance if desired). Ndb Class Constructor Description This creates ... This section provides information about the Ndb class, which models the NDB kernel; it is the primary class of the NDB ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-config-metric-myisam-category.html
Keep Files On Create Enabled Whether to overwrite MyISAM MYD/MYI files or return an error if no DATA DIRECTORY / INDEX DIRECTORY option is set, and the files already exist. Myisam Data Pointer Size The default pointer size, in bytes, to be used by ... Lists the Myisam configuration metrics and provides a brief description of ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-performanceschema-activity-category.html
Cond Instances Lost (Delta) How many instances of object type cond could not be created. File Instances Lost (Delta) How many instances of object type file could not be created. Mutex Instances Lost (Delta) How many instances of object type mutest ... Lists the Performance Schema Activity metrics and provides a brief description of ...
https://dev.mysql.com/doc/x-devapi-userguide/en/transaction-handling.html
Transactions can be used to group operations into an atomic unit. Either all operations of a transaction succeed when they are committed, or none. It is possible to roll back a transaction as long as it has not been committed. Transactions can be ...