Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-raw.html
Syntax: is_raw = ccnx.raw() # getter ccnx.raw(bool) # setter With no argument, returns True or False to indicate whether the MySQL instance return the rows as is (without conversion to Python objects).
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-select-db.html
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: ccnx.select_db(db_name) Sets the default (current) database for the current session.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-shutdown.html
Raises a MySQLErrorInterface exception if an error is retured by the MySQL server. The only argument currently permitted is an integer that describes the shutdown type. Raises a TypeError exception if the first argument is not an integer.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-use-unicode.html
Syntax: is_unicode = ccnx.use_unicode() # getter ccnx.use_unicode(bool) # setter With no argument, returns True or False to indicate whether the MySQL instance returns nonbinary strings as Unicode. With a boolean argument, sets whether the MySQL ...
https://dev.mysql.com/doc/internals/en/client-server-protocol.html
For current information, please refer to the Client/Server Protocol section of the MySQL Server Doxygen documentation, available at https://dev.mysql.com/doc/index-other.html.
https://dev.mysql.com/doc/internals/en/cmake.html
This chapter describes how to build MySQL from source with CMake. You might also find these resources useful: Section 4.6, “Autotools to CMake Transition Guide”: If you have previously built MySQL using the GNU Autotools, this guide shows how ...
https://dev.mysql.com/doc/internals/en/error-messages-old-versions.html
In practice, no new error messages should be added to error message files for versions of MySQL prior to 5.0.3. Before MySQL 5.0.3, error messages are stored in errmsg.txt files in the language directories under sql/share. For each new error ...
https://dev.mysql.com/doc/internals/en/guided-tour.html
What we're about to do in this section is pick up the latest copy of the MySQL source code off the Internet. Next we'll open up some of the files that are vital to MySQL's working, and comment on specific lines in the source code. Then we'll get a ...
https://dev.mysql.com/doc/mysqld-version-reference/en/optvar-changes-8-4.html
The following list details the changes to specific options and variables within MySQL 8.4.
https://dev.mysql.com/doc/ndbapi/en/mccj-issues.html
This section discusses the limitations and known issues in the MySQL NDB Cluster Connector for Java APIs. Database views: Because MySQL database views do not use the NDB storage engine, ClusterJ applications cannot “see” views, and thus cannot ...Known issues in ClusterJ: Joins: With ClusterJ, queries are limited to single ...