Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-fetch-row.html
ccnx.query('SELECT CURRENT_USER(), 1 + 3, NOW()') row = ccnx.fetch_row() print(row) ccnx.free_result() Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: row = ccnx.fetch_row() Fetches the next row from ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-next-result.html
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: ccnx.next_result() Initiates the next result set for a statement string that produced multiple result sets.
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 ...