Search Results
https://dev.mysql.com/doc/relnotes/connector-odbc/en/news-8-0-29.html
(Bug #106683, Bug #33951069) When a Catalog or Schema is not specified, and if a table with the same name and set of columns existed in another database, SQLColumns() would return data from multiple databases instead of only the current database.
https://dev.mysql.com/doc/relnotes/connector-python/en/news-8-0-17.html
For general information about connection attributes, see Performance Schema Connection Attribute Tables. Functionality Added or Changed Bugs Fixed Functionality Added or Changed Prepared statement support was added to the C extension's ...
https://dev.mysql.com/doc/relnotes/connector-python/en/news-8-0-18.html
(Bug #29959309) A table scan for a float using the C Extension caused a memory leak. Functionality Added or Changed Bugs Fixed Functionality Added or Changed Connector/Python connections now set CAN_HANDLE_EXPIRED_PASSWORDS to indicate it can ...
https://dev.mysql.com/doc/relnotes/connector-python/en/news-8-0-21.html
(Bug #31390263) Implemented context managers to define the runtime context to establish when executing a with statement. (WL #13059) Bugs Fixed The connect_timeout option applied to all blocking socket operations but now properly only applies to the ... Functionality Added or Changed Bugs Fixed Functionality Added or Changed On macOS, the official supported Protobuf version is versions before ...
https://dev.mysql.com/doc/relnotes/connector-python/en/news-8-0-29.html
(Bug #81519, Bug #23324748) Attempts to insert Python ByteArray data into binary table columns failed when using the c-extension implementation of Connector/Python. Functionality Added or Changed Bugs Fixed Functionality Added or Changed When a ...
https://dev.mysql.com/doc/x-devapi-userguide/en/boolean-expression-strings.html
Boolean expression strings can be used when filtering collections or tables using operations, such as find() and remove(). The following example of a boolean expression string uses find() to search for all documents with a “red” color attribute ...
https://dev.mysql.com/doc/x-devapi-userguide/en/creating-documents.html
Once a collection has been created, it can store JSON documents. You store documents by passing a JSON data structure to the Collection.add() function. Some languages have direct support for JSON data, others have an equivalent syntax to represent ...
https://dev.mysql.com/doc/x-devapi-userguide/en/devapi-users-crud-operations.html
This section explains how to use the X DevAPI for Create Read, Update, and Delete (CRUD) operations. X DevAPI extends this domain by adding support for CRUD operations that can be run against collections of documents.
https://dev.mysql.com/doc/x-devapi-userguide/en/fetching-all-data-items-at-once.html
The following example assumes that the test schema exists and that the employee table exists in myTable. In addition to the pattern of using fetchOne() explained at Section 9.3, “Working with Data Sets”, which enables applications to consume ...
https://dev.mysql.com/doc/x-devapi-userguide/en/using-sql.html
In addition to the simplified X DevAPI syntax of the Session object, the Session object has a sql() function that takes any SQL statement as a string. The following example uses a Session to call an SQL Stored Procedure on the specific node.