Search Results
https://dev.mysql.com/doc/refman/8.4/en/storage-engines.html
Storage engines are MySQL components that handle the SQL operations for different table types. (The CREATE TABLE statement in MySQL 8.4 creates InnoDB tables by default.) MySQL Server uses a pluggable storage engine architecture that enables ...
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-17.html
(WL #12337) New README.md and CONTRIBUTING.md files now accompany MySQL Connector/NET code for compatibility with Git. (WL #12970) Connector/NET now supports the new utf8mb4_0900_bin collation added for the utf8mb4 Unicode character set in MySQL ...
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-33.html
Deprecation and Removal Notes Packaging Notes X DevAPI Notes Functionality Added or Changed Bugs Fixed Deprecation and Removal Notes Data can be passed in and out of a MySQL stored procedure through the MySqlCommand.Parameters collection. When used ...This secondary action now is deprecated and will be removed in a future ...
https://dev.mysql.com/doc/relnotes/connector-python/en/news-8-0-4.html
MySQL Connectors and other MySQL client tools and applications now synchronize the first digit of their version number with the (latest) MySQL server version they support. For example, MySQL Connector/Python 8.0.12 would be designed to support all ...This change makes it easy and intuitive to decide which client version to use for which server ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-13.html
Version 8.0.13 is the latest General Availability release of the 8.0 series of MySQL Connector/J. It is suitable for use with MySQL Server versions 8.0, 5.7, 5.6, and 5.5. See Connecting to a Single MySQL Server Using Connection Pooling in the X ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-29.html
A new connection property socksProxyRemoteDns has been added, which, when set to true, makes the SocksProxySocketFactory execute its own connect() implementation that passes the unresolved InetSocketAddress of a MySQL Server host to the created ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-9-4-0.html
Note These release notes were created with the assistance of MySQL HeatWave GenAI. MySQL Connector/J 9.4.0 supersedes 9.3 and is recommended for use on production systems. This release can be used against MySQL Server version 8.0 and later. (Bug ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-indexes-create.html
mysql-js> db.countryinfo.createIndex("name", {"fields": [{"field": "$.Name", "type": "TEXT(40)", "required": true}], "unique": true}) Drop an Index To drop an index, pass the name of the index to drop to the dropIndex() method. Without an index, ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-documents-index.html
mysql-py> db.countryinfo.create_index("name", {"fields": [{"field": "$.Name", "type": "TEXT(40)", "required": True}], "unique": True}) Drop an Index To drop an index, pass the name of the index to drop to the drop_index() method. Without an index, ... Indexes are used to find documents with specific field values ...
https://dev.mysql.com/doc/relnotes/connector-python/en/news-8-0-32.html
(WL #14861) Adopted type hint enforcement for function and class attributes with mypy; this is compliant with PEP 8 for module mysql.connector. Limitation: GSSAPI cannot be used with the pure Python implementation on Windows using authentication ...