Search Results
https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-7.html
Note These release notes were created with the assistance of MySQL HeatWave GenAI. InnoDB Notes Creating a thread for parallel scan may fail, resulting in assertion failures when it fell back to single-thread mode. (Bug #37994397) Users could ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/backup-commands-single-file.html
Besides the commands for creating and restoring single-file backups (namely, backup-to-image and copy-back-and-apply-log), mysqlbackup provides a number of other commands for you to work with single-file backups. Note image-to-backup-dir only ...To ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-encryption.html
The encryption can also be applied when creating a partial, compressed, or incremental single-file backups, and for streaming backup data to another device or server. The encryption is performed with Advanced Encryption Standard (AES) block cipher ... In order to enhance security for backed up data, MySQL Enterprise Backup provides encryption for single-file ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-install-agent-windows-service.html
The installation is performed using the command prompt (cmd.exe); as with installing or removing any Windows service, it must also be done as a user having sufficient permissions, such the system Administrator account. To install the MySQL Cluster ... Important Installation of the MySQL Cluster Manager agent as a service is ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-pooling.html
See Section 4.4.1, “Creating a Connector/NET Connection String” for further information. Subsequently, if a new MySqlConnection object is opened, it is created from the connection pool, rather than creating a new native connection. Do not create ... The MySQL Connector/NET supports connection pooling for better performance and scalability with database-intensive ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming-net.html
5.6.7.2.1 Using Connector/ODBC with ODBC.NET and C# (C sharp) The following sample creates a table my_odbc_net and demonstrates its use in C#. This section contains simple examples that demonstrate the use of Connector/ODBC drivers with ODBC.NET.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor.html
To create a cursor, use the cursor() method of a connection object: import mysql.connector cnx = mysql.connector.connect(database='world') cursor = cnx.cursor() Several related classes inherit from MySQLCursor. To create a cursor of one of these ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-pooling.html
See Section 4.1, “Creating a Connector/NET Connection String” for further information. Subsequently, if a new MySqlConnection object is opened, it is created from the connection pool, rather than creating a new native connection. Do not create a ... The MySQL Connector/NET supports connection pooling for better performance and scalability with database-intensive ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor.html
To create a cursor, use the cursor() method of a connection object: import mysql.connector cnx = mysql.connector.connect(database='world') cursor = cnx.cursor() Several related classes inherit from MySQLCursor. To create a cursor of one of these ...
https://dev.mysql.com/doc/internals/en/the-myi-file.html
In MySQL terminology, a "key" is something that you create with CREATE [UNIQUE] INDEX. Program files which read and write .MYI headers are in the ./myisam directory: mi_open.c has the routines that write each section of the header, mi_create.c has a ... A .MYI file for a MyISAM table contains the table's ...