Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-start-transaction.html
MySQL ignores this for isolation levels for which that option does not apply. If the server is older than MySQL 5.6.5, it does not support setting the access mode and Connector/Python raises a ValueError. It accepts arguments indicating whether to ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-add-attribute.html
Syntax: cursor.add_attribute(name, value) Adds a new named query attribute to the list, as part of MySQL server's Query Attributes functionality. value: a value converted to the MySQL Binary Protocol, similar to how prepared statement parameters ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-description.html
Each tuple in the list contains values as follows: (column_name, type, None, None, None, None, null_ok, column_flags) The following example shows how to interpret description tuples: import mysql.connector from mysql.connector import FieldType ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor.html
The MySQLCursor class instantiates objects that can execute operations such as SQL statements. Cursor objects interact with the MySQL server using a MySQLConnection object. To create a cursor, use the cursor() method of a connection object: import ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorbuffered.html
After executing a query, a MySQLCursorBuffered cursor fetches the entire result set from the server and buffers the rows. MySQLCursorBuffered can be useful in situations where multiple queries, with small result sets, need to be combined or computed ...For queries executed using a buffered cursor, row-fetching methods such as fetchone() return rows from the set of buffered ...
https://dev.mysql.com/doc/connector-python/en/connector-python-obtaining.html
Note The mysql-connector-python package installs an interface to the classic MySQL protocol. Prior to Connector/Python 8.3.0, mysql-connector-python installed interfaces to both the X and classic protocols. Using pip is the preferred method to ...
https://dev.mysql.com/doc/connector-python/en/connector-python-tutorial-cursorbuffered.html
(A buffered cursor fetches and buffers the rows of a result set after executing a query; see Section 10.6.1, “cursor.MySQLCursorBuffered Class”.) This way, it is unnecessary to fetch the rows in a new variables. The following example script ...
https://dev.mysql.com/doc/connector-python/en/preface.html
This manual describes how to install, configure, and develop database applications using MySQL Connector/Python, the Python driver for communicating with MySQL servers. Trademark Notice Oracle, Java, MySQL, and NetSuite are registered trademarks of ...License Restrictions This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property ...
https://dev.mysql.com/doc/internals/en/additional-resources.html
MySQL Reference Manual, Chapter 20, The Binary Log MySQL Reference Manual, Relay Log and Replication Metadata Repositories MySQL Reference Manual, mysqlbinlog — Utility for Processing Binary Log Files . The following resources provide additional ...
https://dev.mysql.com/doc/internals/en/authentication-method.html
For earlier servers it is always Secure Password Authentication or Old Password Authentication depending on the CLIENT_SECURE_CONNECTION flag. Client and server negotiate what types of authentication they support as part of the connection phase.