Connector Python en
Connector Python en
Connector Python en
Abstract
This manual describes how to install and configure MySQL Connector/Python, a self-contained Python driver for
communicating with MySQL servers, and how to use it to develop database applications.
The latest MySQL Connector/Python version is recommended for use with MySQL Server version 5.7 and higher.
For notes detailing the changes in each release of Connector/Python, see MySQL Connector/Python Release Notes.
For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL
users.
Licensing information. This product may include third-party software, used under license. If you are using a
Commercial release of MySQL Connector/Python, see the MySQL Connector/Python 8.1 Commercial License
Information User Manual for licensing information, including licensing information relating to third-party software that
may be included in this Commercial release. If you are using a Community release of MySQL Connector/Python, see
the MySQL Connector/Python 8.1 Community License Information User Manual for licensing information, including
licensing information relating to third-party software that may be included in this Community release.
iii
MySQL Connector/Python Developer Guide
iv
MySQL Connector/Python Developer Guide
v
MySQL Connector/Python Developer Guide
vi
Preface and Legal Notices
This manual describes how to install, configure, and develop database applications using MySQL
Connector/Python, the Python driver for communicating with MySQL servers.
Legal Notices
Copyright © 2012, 2023, Oracle and/or its affiliates.
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 laws. Except as expressly permitted
in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast,
modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any
means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for
interoperability, is prohibited.
Warranty Disclaimer
The information contained herein is subject to change without notice and is not warranted to be error-free.
If you find any errors, please report them to us in writing.
If this is software, software documentation, data (as defined in the Federal Acquisition Regulation), or
related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S.
Government, then the following notice is applicable:
U.S. GOVERNMENT END USERS: Oracle programs (including any operating system, integrated
software, any programs embedded, installed, or activated on delivered hardware, and modifications
of such programs) and Oracle computer documentation or other Oracle data delivered to or accessed
by U.S. Government end users are "commercial computer software," "commercial computer software
documentation," or "limited rights data" pursuant to the applicable Federal Acquisition Regulation and
agency-specific supplemental regulations. As such, the use, reproduction, duplication, release, display,
disclosure, modification, preparation of derivative works, and/or adaptation of i) Oracle programs (including
any operating system, integrated software, any programs embedded, installed, or activated on delivered
hardware, and modifications of such programs), ii) Oracle computer documentation and/or iii) other Oracle
data, is subject to the rights and limitations specified in the license contained in the applicable contract.
The terms governing the U.S. Government's use of Oracle cloud services are defined by the applicable
contract for such services. No other rights are granted to the U.S. Government.
This software or hardware is developed for general use in a variety of information management
applications. It is not developed or intended for use in any inherently dangerous applications, including
applications that may create a risk of personal injury. If you use this software or hardware in dangerous
applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other
measures to ensure its safe use. Oracle Corporation and its affiliates disclaim any liability for any damages
caused by use of this software or hardware in dangerous applications.
Trademark Notice
Oracle, Java, MySQL, and NetSuite are registered trademarks of Oracle and/or its affiliates. Other names
may be trademarks of their respective owners.
vii
Documentation Accessibility
Intel and Intel Inside are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks
are used under license and are trademarks or registered trademarks of SPARC International, Inc. AMD,
Epyc, and the AMD logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a
registered trademark of The Open Group.
This software or hardware and documentation may provide access to or information about content,
products, and services from third parties. Oracle Corporation and its affiliates are not responsible for and
expressly disclaim all warranties of any kind with respect to third-party content, products, and services
unless otherwise set forth in an applicable agreement between you and Oracle. Oracle Corporation and its
affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of
third-party content, products, or services, except as set forth in an applicable agreement between you and
Oracle.
This documentation is NOT distributed under a GPL license. Use of this documentation is subject to the
following terms:
You may create a printed copy of this documentation solely for your own personal use. Conversion to other
formats is allowed as long as the actual content is not altered or edited in any way. You shall not publish
or distribute this documentation in any form or on any media, except if you distribute the documentation in
a manner similar to how Oracle disseminates it (that is, electronically for download on a Web site with the
software) or on a CD-ROM or similar medium, provided however that the documentation is disseminated
together with the software on the same medium. Any other use, such as any dissemination of printed
copies or use of this documentation, in whole or in part, in another publication, requires the prior written
consent from an authorized representative of Oracle. Oracle and/or its affiliates reserve any and all rights
to this documentation not expressly granted above.
Documentation Accessibility
For information about Oracle's commitment to accessibility, visit the Oracle Accessibility Program website
at
http://www.oracle.com/pls/topic/lookup?ctx=acc&id=docacc.
viii
Chapter 1 Introduction to MySQL Connector/Python
MySQL Connector/Python enables Python programs to access MySQL databases, using an API that is
compliant with the Python Database API Specification v2.0 (PEP 249).
For notes detailing the changes in each release of Connector/Python, see MySQL Connector/Python
Release Notes.
• Almost all features provided by MySQL Server version 5.7 and higher.
Connector/Python also supports X DevAPI. For documentation of the concepts and the usage of MySQL
Connector/Python with X DevAPI, see X DevAPI User Guide.
• Converting parameter values back and forth between Python and MySQL data types, for example
Python datetime and MySQL DATETIME. You can turn automatic conversion on for convenience, or off
for optimal performance.
• Protocol compression, which enables compressing the data stream between the client and server.
• Self-contained driver. Connector/Python does not require the MySQL client library or any Python
modules outside the standard library.
For information about which versions of Python can be used with different versions of MySQL Connector/
Python, see Chapter 3, Connector/Python Versions.
Note
Connector/Python does not support the old MySQL Server authentication methods,
which means that MySQL versions prior to 4.1 will not work.
1
2
Chapter 2 Guidelines for Python Developers
The following guidelines cover aspects of developing MySQL applications that might not be immediately
obvious to developers coming from a Python background:
• For security, do not hardcode the values needed to connect and log into the database in your main
script. Python has the convention of a config.py module, where you can keep such values separate
from the rest of your code.
• Python scripts often build up and tear down large data structures in memory, up to the limits of available
RAM. Because MySQL often deals with data sets that are many times larger than available memory,
techniques that optimize storage space and disk I/O are especially important. For example, in MySQL
tables, you typically use numeric IDs rather than string-based dictionary keys, so that the key values
are compact and have a predictable length. This is especially important for columns that make up the
primary key for an InnoDB table, because those column values are duplicated within each secondary
index.
• Any application that accepts input must expect to handle bad data.
The bad data might be accidental, such as out-of-range values or misformatted strings. The application
can use server-side checks such as unique constraints and NOT NULL constraints, to keep the bad data
from ever reaching the database. On the client side, use techniques such as exception handlers to report
any problems and take corrective action.
The bad data might also be deliberate, representing an “SQL injection” attack. For example, input values
might contain quotation marks, semicolons, % and _ wildcard characters and other characters significant
in SQL statements. Validate input values to make sure they have only the expected characters. Escape
any special characters that could change the intended behavior when substituted into an SQL statement.
Never concatenate a user input value into an SQL statement without doing validation and escaping first.
Even when accepting input generated by some other program, expect that the other program could also
have been compromised and be sending you incorrect or malicious data.
• Because the result sets from SQL queries can be very large, use the appropriate method to retrieve
items from the result set as you loop through them. fetchone() retrieves a single item, when you know
the result set contains a single row. fetchall() retrieves all the items, when you know the result set
contains a limited number of rows that can fit comfortably into memory. fetchmany() is the general-
purpose method when you cannot predict the size of the result set: you keep calling it and looping
through the returned items, until there are no more results to process.
• Since Python already has convenient modules such as pickle and cPickle to read and write
data structures on disk, data that you choose to store in MySQL instead is likely to have special
characteristics:
• Too large to all fit in memory at one time. You use SELECT statements to query only the precise
items you need, and aggregate functions to perform calculations across multiple items. You configure
the innodb_buffer_pool_size option within the MySQL server to dedicate a certain amount of
RAM for caching table and index data.
• Too complex to be represented by a single data structure. You divide the data between different
SQL tables. You can recombine data from multiple tables by using a join query. You make sure that
related data is kept in sync between different tables by setting up foreign key relationships.
• Updated frequently, perhaps by multiple users simultaneously. The updates might only affect
a small portion of the data, making it wasteful to write the whole structure each time. You use the
SQL INSERT, UPDATE, and DELETE statements to update different items concurrently, writing only
3
the changed values to disk. You use InnoDB tables and transactions to keep write operations from
conflicting with each other, and to return consistent query results even as the underlying data is being
updated.
• Using MySQL best practices for performance can help your application to scale without requiring major
rewrites and architectural changes. See Optimization for best practices for MySQL performance. It offers
guidelines and tips for SQL tuning, database design, and server configuration.
• You can avoid reinventing the wheel by learning the MySQL SQL statements for common operations:
operators to use in queries, techniques for bulk loading data, and so on. Some statements and clauses
are extensions to the basic ones defined by the SQL standard. See Data Manipulation Statements, Data
Definition Statements, and SELECT Statement for the main classes of statements.
• Issuing SQL statements from Python typically involves declaring very long, possibly multi-line string
literals. Because string literals within the SQL statements could be enclosed by single quotation, double
quotation marks, or contain either of those characters, for simplicity you can use Python's triple-quoting
mechanism to enclose the entire statement. For example:
'''It doesn't matter if this string contains 'single'
or "double" quotes, as long as there aren't 3 in a
row.'''
You can use either of the ' or " characters for triple-quoting multi-line string literals.
• Many of the secrets to a fast, scalable MySQL application involve using the right syntax at the very
start of your setup procedure, in the CREATE TABLE statements. For example, Oracle recommends
the ENGINE=INNODB clause for most tables, and makes InnoDB the default storage engine in MySQL
5.5 and up. Using InnoDB tables enables transactional behavior that helps scalability of read-write
workloads and offers automatic crash recovery. Another recommendation is to declare a numeric
primary key for each table, which offers the fastest way to look up values and can act as a pointer to
associated values in other tables (a foreign key). Also within the CREATE TABLE statement, using
the most compact column data types that meet your application requirements helps performance and
scalability because that enables the database server to move less data back and forth between memory
and disk.
4
Chapter 3 Connector/Python Versions
This section describes both version releases, such as 8.0.34, along with notes specific to the two
implementations (C Extension and Pure Python).
Connector/Python Releases
The following table summarizes the available Connector/Python versions. For series that have reached
General Availability (GA) status, development releases in the series prior to the GA version are no longer
supported.
Note
MySQL Connectors and other MySQL client tools and applications now synchronize
the first digit of their version number with the (highest) MySQL server version they
support. For example, MySQL Connector/Python 8.0.12 would be designed to
support all features of MySQL server version 8 (or lower). This change makes it
easy and intuitive to decide which client version to use for which server version.
Connector/Python 8.0.4 is the first release to use the new numbering. It is the
successor to Connector/Python 2.2.3.
Note
MySQL server and Python versions within parentheses are known to work with
Connector/Python, but are not officially supported. Bugs might not get fixed for
those versions.
Note
Connector/Python does not support the old MySQL Server authentication methods,
which means that MySQL versions prior to 4.1 will not work.
5
Connector/Python Implementations
Note
On macOS x86_64 ARM: Python 3.7 is not supported with the c-ext
implementation; note this is a non-default version of Python on macOS.
Connector/Python Implementations
Connector/Python implements the MySQL client/server protocol two ways:
• As pure Python; an implementation written in Python. Its dependencies are the Python Standard Library
and Python Protobuf >= 4.21.1,<= 4.21.12.
Note
EL7 and Ubuntu 16.04 do not provide Python Protobuf 3+ making the pure
Python version unavailable on those platforms; use the C Extension variant there
instead. You may have to --force the installation but may not use use_pure=True.
• As a C Extension that interfaces with the MySQL C client library. This implementation of the protocol
is dependent on the client library, but can use the library provided by MySQL Server packages (see
MySQL C API Implementations).
Neither implementation of the client/server protocol has any third-party dependencies. However, if you
need SSL support, verify that your Python installation has been compiled using the OpenSSL libraries.
TLS Support
By default, EL8 and Debian 10 supports TLSv1.2 and later when the policy level is
set to DEFAULT. To support TLSv1 and TLSv1.1, the policy needs to be changed
to LEGACY. This means that a default EL8/DEB10 setup cannot make connections
with TLSv1 and TLSv1.1 using the C-extension. Other platforms may change their
default behavior in the future.
Note
• Built Distribution: A package created in the native packaging format intended for a given platform. It
contains both sources and platform-independent bytecode. Connector/Python binary distributions are
built distributions.
• Source Distribution: A distribution that contains only source files and is generally platform independent.
6
Chapter 4 Connector/Python Installation
Table of Contents
4.1 Obtaining Connector/Python .......................................................................................................... 7
4.2 Installing Connector/Python from a Binary Distribution .................................................................... 7
4.3 Installing Connector/Python from a Source Distribution ................................................................... 9
4.4 Verifying Your Connector/Python Installation ................................................................................ 11
Connector/Python runs on any platform where Python is installed. Python comes preinstalled on most Unix
and Unix-like systems, such as Linux, macOS, and FreeBSD. On Microsoft Windows, a Python installer is
available at the Python Download website or via the Microsoft app store. If necessary, download and install
Python for Windows before attempting to install Connector/Python.
Note
# Upgrade
$> pip install mysql-connector-python --upgrade
Note
Binary distributions that provide the C Extension link to an already installed C client library provided by a
MySQL Server installation. For those distributions that are not statically linked, you must install MySQL
Server if it is not already present on your system. To obtain it, visit the MySQL download site.
7
Installing Connector/Python on Microsoft Windows
Note
Prerequisites
• On EL7, EL8, and SUSE: A python3-protobuf RPM package is not available for Python 3.8 on these
platforms, so the dependency is not part of the RPM specification; instead it must be manually installed
with the likes of pip install protobuf. This is required as of v8.0.29.
To install a Connector/Python RPM package (denoted here as PACKAGE.rpm), use this command:
$> rpm -i PACKAGE.rpm
Prerequisites
• On EL7, EL8, and SUSE: A python3-protobuf RPM package is not available for Python 3.8 on these
platforms, so the dependency is not part of the RPM specification; instead it must be manually installed
with the likes of pip install protobuf. This is required as of v8.0.29.
Note
8
Installing Connector/Python on Linux Using a Debian Package
RPM provides a feature to verify the integrity and authenticity of packages before installing them. To learn
more, see Verifying Package Integrity Using MD5 Checksums or GnuPG.
To install a Connector/Python Debian package (denoted here as PACKAGE.deb), use this command:
$> dpkg -i PACKAGE.deb
Note
Note
Either packaging format can be used on any platform, but Zip archives are more commonly used on
Windows systems and tar archives on Unix and Unix-like systems.
Note
Python 2.7 support was removed in Connector/Python 8.0.24, and Python 3.7
support was removed in Connector/Python 8.1.0.
9
Installing Connector/Python from Source on Microsoft Windows
• Protobuf C++ (version >= 4.21.1,<=4.21.12) for the C extension and/or Python's protobuf package for the
pure Python implementation
• MySQL Server installed, including development files to compile the optional C Extension that interfaces
with the MySQL C client library
You must install MySQL Server if it is not already present on your system. To obtain it, visit the MySQL
download site.
For certain platforms, MySQL development files are provided in separate packages. This is true for RPM
and Debian packages, for example.
To install Connector/Python from a Zip archive, download the latest version and follow these steps:
1. Unpack the Zip archive in the intended installation directory (for example, C:\mysql-connector\)
using WinZip or another tool that can read .zip files.
2. Start a console window and change location to the folder where you unpacked the Zip archive:
$> cd C:\mysql-connector\
3. Inside the Connector/Python folder, perform the installation using this command:
$> python setup.py install
To include the C Extension (available as of Connector/Python 2.1.1), use this command instead:
$> python setup.py install --with-mysql-capi="path_name"
The argument to --with-mysql-capi is the path to the installation directory of MySQL Server.
To see all options and commands supported by setup.py, use this command:
$> python setup.py --help
To install Connector/Python from a tar archive, download the latest version (denoted here as VER), and
execute these commands:
$> tar xzf mysql-connector-python-VER.tar.gz
$> cd mysql-connector-python-VER
10
Verifying Your Connector/Python Installation
To include the C Extension (available as of Connector/Python 2.1.1) that interfaces with the MySQL C
client library, also add the --with-mysql-capi such as:
$> sudo python setup.py install \
--with-protobuf-include-dir=/dir/to/protobuf/include \
--with-protobuf-lib-dir=/dir/to/protobuf/lib \
--with-protoc=/path/to/protoc/binary \
--with-mysql-capi="path_name
The argument to --with-mysql-capi is the path to the installation directory of MySQL Server, or the
path to the mysql_config command.
To see all options and commands supported by setup.py, use this command:
$> python setup.py --help
Depending on your platform, the installation path might differ from the default. If you are not sure where
Connector/Python is installed, do the following to determine its location. The output here shows installation
locations as might be seen on macOS:
$> python
>>> from distutils.sysconfig import get_python_lib
To test that your Connector/Python installation is working and able to connect to MySQL Server, you can
run a very simple program where you supply the login credentials and host information required for the
connection. For an example, see Section 5.1, “Connecting to MySQL Using Connector/Python”.
11
12
Chapter 5 Connector/Python Coding Examples
Table of Contents
5.1 Connecting to MySQL Using Connector/Python ........................................................................... 13
5.2 Creating Tables Using Connector/Python ..................................................................................... 14
5.3 Inserting Data Using Connector/Python ....................................................................................... 17
5.4 Querying Data Using Connector/Python ....................................................................................... 18
These coding examples illustrate how to develop Python applications and scripts which connect to MySQL
Server using MySQL Connector/Python.
Section 7.1, “Connector/Python Connection Arguments” describes the permitted connection arguments.
Both forms (either using the connect() constructor or the class directly) are valid and functionally equal,
but using connect() is preferred and used by most examples in this manual.
To handle connection errors, use the try statement and catch all errors using the errors.Error exception:
import mysql.connector
from mysql.connector import errorcode
try:
cnx = mysql.connector.connect(user='scott',
database='employ')
except mysql.connector.Error as err:
if err.errno == errorcode.ER_ACCESS_DENIED_ERROR:
print("Something is wrong with your user name or password")
elif err.errno == errorcode.ER_BAD_DB_ERROR:
print("Database does not exist")
else:
print(err)
else:
cnx.close()
Defining connection arguments in a dictionary and using the ** operator is another option:
import mysql.connector
13
Using the Connector/Python Python or C Extension
config = {
'user': 'scott',
'password': 'password',
'host': '127.0.0.1',
'database': 'employees',
'raise_on_warnings': True
}
cnx = mysql.connector.connect(**config)
cnx.close()
Note
It is also possible to use the C Extension directly by importing the _mysql_connector module rather
than the mysql.connector module. For more information, see Section 8.2, “The _mysql_connector C
Extension Module”.
In a MySQL server, tables are very long-lived objects, and are often accessed by multiple applications
written in different languages. You might typically work with tables that are already set up, rather than
creating them within your own application. Avoid setting up and dropping tables over and over again, as
that is an expensive operation. The exception is temporary tables, which can be created and dropped
quickly within an application.
from __future__ import print_function
import mysql.connector
from mysql.connector import errorcode
DB_NAME = 'employees'
TABLES = {}
TABLES['employees'] = (
14
Creating Tables Using Connector/Python
TABLES['departments'] = (
"CREATE TABLE `departments` ("
" `dept_no` char(4) NOT NULL,"
" `dept_name` varchar(40) NOT NULL,"
" PRIMARY KEY (`dept_no`), UNIQUE KEY `dept_name` (`dept_name`)"
") ENGINE=InnoDB")
TABLES['salaries'] = (
"CREATE TABLE `salaries` ("
" `emp_no` int(11) NOT NULL,"
" `salary` int(11) NOT NULL,"
" `from_date` date NOT NULL,"
" `to_date` date NOT NULL,"
" PRIMARY KEY (`emp_no`,`from_date`), KEY `emp_no` (`emp_no`),"
" CONSTRAINT `salaries_ibfk_1` FOREIGN KEY (`emp_no`) "
" REFERENCES `employees` (`emp_no`) ON DELETE CASCADE"
") ENGINE=InnoDB")
TABLES['dept_emp'] = (
"CREATE TABLE `dept_emp` ("
" `emp_no` int(11) NOT NULL,"
" `dept_no` char(4) NOT NULL,"
" `from_date` date NOT NULL,"
" `to_date` date NOT NULL,"
" PRIMARY KEY (`emp_no`,`dept_no`), KEY `emp_no` (`emp_no`),"
" KEY `dept_no` (`dept_no`),"
" CONSTRAINT `dept_emp_ibfk_1` FOREIGN KEY (`emp_no`) "
" REFERENCES `employees` (`emp_no`) ON DELETE CASCADE,"
" CONSTRAINT `dept_emp_ibfk_2` FOREIGN KEY (`dept_no`) "
" REFERENCES `departments` (`dept_no`) ON DELETE CASCADE"
") ENGINE=InnoDB")
TABLES['dept_manager'] = (
" CREATE TABLE `dept_manager` ("
" `emp_no` int(11) NOT NULL,"
" `dept_no` char(4) NOT NULL,"
" `from_date` date NOT NULL,"
" `to_date` date NOT NULL,"
" PRIMARY KEY (`emp_no`,`dept_no`),"
" KEY `emp_no` (`emp_no`),"
" KEY `dept_no` (`dept_no`),"
" CONSTRAINT `dept_manager_ibfk_1` FOREIGN KEY (`emp_no`) "
" REFERENCES `employees` (`emp_no`) ON DELETE CASCADE,"
" CONSTRAINT `dept_manager_ibfk_2` FOREIGN KEY (`dept_no`) "
" REFERENCES `departments` (`dept_no`) ON DELETE CASCADE"
") ENGINE=InnoDB")
TABLES['titles'] = (
"CREATE TABLE `titles` ("
" `emp_no` int(11) NOT NULL,"
" `title` varchar(50) NOT NULL,"
" `from_date` date NOT NULL,"
" `to_date` date DEFAULT NULL,"
" PRIMARY KEY (`emp_no`,`title`,`from_date`), KEY `emp_no` (`emp_no`),"
" CONSTRAINT `titles_ibfk_1` FOREIGN KEY (`emp_no`)"
" REFERENCES `employees` (`emp_no`) ON DELETE CASCADE"
") ENGINE=InnoDB")
15
Creating Tables Using Connector/Python
The preceding code shows how we are storing the CREATE statements in a Python dictionary called
TABLES. We also define the database in a global variable called DB_NAME, which enables you to easily
use a different schema.
cnx = mysql.connector.connect(user='scott')
cursor = cnx.cursor()
A single MySQL server can manage multiple databases. Typically, you specify the database to switch to
when connecting to the MySQL server. This example does not connect to the database upon connection,
so that it can make sure the database exists, and create it if not:
def create_database(cursor):
try:
cursor.execute(
"CREATE DATABASE {} DEFAULT CHARACTER SET 'utf8'".format(DB_NAME))
except mysql.connector.Error as err:
print("Failed creating database: {}".format(err))
exit(1)
try:
cursor.execute("USE {}".format(DB_NAME))
except mysql.connector.Error as err:
print("Database {} does not exists.".format(DB_NAME))
if err.errno == errorcode.ER_BAD_DB_ERROR:
create_database(cursor)
print("Database {} created successfully.".format(DB_NAME))
cnx.database = DB_NAME
else:
print(err)
exit(1)
We first try to change to a particular database using the database property of the connection object cnx.
If there is an error, we examine the error number to check if the database does not exist. If so, we call the
create_database function to create it for us.
On any other error, the application exits and displays the error message.
After we successfully create or change to the target database, we create the tables by iterating over the
items of the TABLES dictionary:
for table_name in TABLES:
table_description = TABLES[table_name]
try:
print("Creating table {}: ".format(table_name), end='')
cursor.execute(table_description)
except mysql.connector.Error as err:
if err.errno == errorcode.ER_TABLE_EXISTS_ERROR:
print("already exists.")
else:
print(err.msg)
else:
print("OK")
cursor.close()
cnx.close()
To handle the error when the table already exists, we notify the user that it was already there. Other errors
are printed, but we continue creating tables. (The example shows how to handle the “table already exists”
condition for illustration purposes. In a real application, we would typically avoid the error condition entirely
by using the IF NOT EXISTS clause of the CREATE TABLE statement.)
16
Inserting Data Using Connector/Python
To populate the employees tables, use the dump files of the Employee Sample Database. Note that
you only need the data dump files that you will find in an archive named like employees_db-dump-
files-1.0.5.tar.bz2. After downloading the dump files, execute the following commands, adding
connection options to the mysql commands if necessary:
$> tar xzf employees_db-dump-files-1.0.5.tar.bz2
$> cd employees_db
$> mysql employees < load_employees.dump
$> mysql employees < load_titles.dump
$> mysql employees < load_departments.dump
$> mysql employees < load_salaries.dump
$> mysql employees < load_dept_emp.dump
$> mysql employees < load_dept_manager.dump
This example shows how to insert new data. The second INSERT depends on the value of the newly
created primary key of the first. The example also demonstrates how to use extended formats. The task is
to add a new employee starting to work tomorrow with a salary set to 50000.
Note
The following example uses tables created in the example Section 5.2, “Creating
Tables Using Connector/Python”. The AUTO_INCREMENT column option for
the primary key of the employees table is important to ensure reliable, easily
searchable data.
17
Querying Data Using Connector/Python
cursor.close()
cnx.close()
We first open a connection to the MySQL server and store the connection object in the variable cnx. We
then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method.
We could calculate tomorrow by calling a database function, but for clarity we do it in Python using the
datetime module.
Both INSERT statements are stored in the variables called add_employee and add_salary. Note that
the second INSERT statement uses extended Python format codes.
The information of the new employee is stored in the tuple data_employee. The query to insert
the new employee is executed and we retrieve the newly inserted value for the emp_no column (an
AUTO_INCREMENT column) using the lastrowid property of the cursor object.
Next, we insert the new salary for the new employee, using the emp_no variable in the dictionary holding
the data. This dictionary is passed to the execute() method of the cursor object if an error occurred.
Since by default Connector/Python turns autocommit off, and MySQL 5.5 and higher uses transactional
InnoDB tables by default, it is necessary to commit your changes using the connection's commit()
method. You could also roll back using the rollback() method.
The task is to select all employees hired in the year 1999 and print their names and hire dates to the
console.
import datetime
import mysql.connector
hire_start = datetime.date(1999, 1, 1)
hire_end = datetime.date(1999, 12, 31)
cursor.close()
18
Querying Data Using Connector/Python
cnx.close()
We first open a connection to the MySQL server and store the connection object in the variable cnx. We
then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method.
In the preceding example, we store the SELECT statement in the variable query. Note that we are using
unquoted %s-markers where dates should have been. Connector/Python converts hire_start and
hire_end from Python types to a data type that MySQL understands and adds the required quotes. In this
case, it replaces the first %s with '1999-01-01', and the second with '1999-12-31'.
We then execute the operation stored in the query variable using the execute() method. The data used
to replace the %s-markers in the query is passed as a tuple: (hire_start, hire_end).
After executing the query, the MySQL server is ready to send the data. The result set could be zero rows,
one row, or 100 million rows. Depending on the expected volume, you can use different techniques to
process this result set. In this example, we use the cursor object as an iterator. The first column in the
row is stored in the variable first_name, the second in last_name, and the third in hire_date.
We print the result, formatting the output using Python's built-in format() function. Note that hire_date
was converted automatically by Connector/Python to a Python datetime.date object. This means that
we can easily format the date in a more human-readable form.
19
20
Chapter 6 Connector/Python Tutorials
Table of Contents
6.1 Tutorial: Raise Employee's Salary Using a Buffered Cursor .......................................................... 21
These tutorials illustrate how to develop Python applications and scripts that connect to a MySQL database
server using MySQL Connector/Python.
To iterate through the selected employees, we use buffered cursors. (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. Instead, the cursor can be used as an
iterator.
Note
This script is an example; there are other ways of doing this simple task.
import mysql.connector
# UPDATE and INSERT statements for the old and new salary
update_old_salary = (
"UPDATE salaries SET to_date = %s "
"WHERE emp_no = %s AND from_date = %s")
insert_new_salary = (
"INSERT INTO salaries (emp_no, from_date, to_date, salary) "
"VALUES (%s, %s, %s, %s)")
21
Tutorial: Raise Employee's Salary Using a Buffered Cursor
cnx.close()
22
Chapter 7 Connector/Python Connection Establishment
Table of Contents
7.1 Connector/Python Connection Arguments .................................................................................... 23
7.2 Connector/Python Option-File Support ......................................................................................... 30
Connector/Python provides a connect() call used to establish connections to the MySQL server. The
following sections describe the permitted arguments for connect() and describe how to use option files
that supply additional arguments.
The following table describes the arguments that can be used to initiate a connection. An asterisk (*)
following an argument indicates a synonymous argument name, available only for compatibility with other
Python MySQL drivers. Oracle recommends not to use these alternative names.
23
Connector/Python Connection Arguments
24
Connector/Python Connection Arguments
25
MySQL Authentication Options
26
Character Encoding
When the database argument is given, the current database is set to the given value. To change
the current database later, execute a USE SQL statement or set the database property of the
MySQLConnection instance.
By default, Connector/Python tries to connect to a MySQL server running on the local host using TCP/IP.
The host argument defaults to IP address 127.0.0.1 and port to 3306. Unix sockets are supported by
setting unix_socket. Named pipes on the Windows platform are not supported.
The connect() method supports an auth_plugin argument that can be used to force use of a
particular plugin. For example, if the server is configured to use sha256_password by default and you
want to connect to an account that authenticates using mysql_native_password, either connect using
SSL or specify auth_plugin='mysql_native_password'.
Note
Connector/Python supports the Kerberos authentication protocol for passwordless authentication. Linux
clients are supported as of Connector/Python 8.0.26, and Windows support was added in Connector/
Python 8.0.27 with the C extension implementation, and in Connector/Python 8.0.29 with the pure Python
implementation. For Windows, the related kerberos_auth_mode connection option was added in 8.0.32
to configure the mode as either SSPI (default) or GSSAPI. While Windows supports both modes, Linux
only supports GSSAPI.
Restrictions: FIDO authentication functionality is only available in the C-extension implementation (installed
by default); a NotSupportedError is raised when using the pure Python implementation of this connector.
Also only a 2-level structure is supported, in that the connector and the physical key are on the same
machine.
See FIDO Pluggable Authentication for installation details, and optionally use the Connector/Python
fido_callback connection option to notify users that they need to touch the hardware device.
Character Encoding
By default, strings coming from MySQL are returned as Python Unicode literals. To change this behavior,
set use_unicode to False. You can change the character setting for the client connection through the
charset argument. To change the character set after connecting to MySQL, set the charset property of
the MySQLConnection instance. This technique is preferred over using the SET NAMES SQL statement
directly. Similar to the charset property, you can set the collation for the current MySQL session.
Transactions
The autocommit value defaults to False, so transactions are not automatically committed. Call the
commit() method of the MySQLConnection instance within your application after doing a set of related
27
Time Zones
insert, update, and delete operations. For data consistency and high throughput for write operations, it is
best to leave the autocommit configuration option turned off when using InnoDB or other transactional
tables.
Time Zones
The time zone can be set per connection using the time_zone argument. This is useful, for example, if
the MySQL server is set to UTC and TIMESTAMP values should be returned by MySQL converted to the
PST time zone.
SQL Modes
MySQL supports so-called SQL Modes. which change the behavior of the server globally or per
connection. For example, to have warnings raised as errors, set sql_mode to TRADITIONAL. For more
information, see Server SQL Modes.
If client_flags is not specified (that is, it is zero), defaults are used for MySQL 4.1 and higher. If you
specify an integer greater than 0, make sure all flags are set properly. A better way to set and unset flags
individually is to use a list. For example, to set FOUND_ROWS, but disable the default LONG_FLAG:
flags = [ClientFlag.FOUND_ROWS, -ClientFlag.LONG_FLAG]
mysql.connector.connect(client_flags=flags)
Results generated by queries normally are not read until the client program fetches them. To automatically
consume and discard result sets, set the consume_results option to True. The result is that all results
are read, which for large result sets can be slow. (In this case, it might be preferable to close and reopen
the connection.)
Type Conversions
By default, MySQL types in result sets are converted automatically to Python types. For example, a
DATETIME column value becomes a datetime.datetime object. To disable conversion, set the raw option to
True. You might do this to get better performance or perform different types of conversion yourself.
28
Connecting through SSL
As of Connector/Python 2.2.2, if the MySQL server supports SSL connections, Connector/Python attempts
to establish a secure (encrypted) connection by default, falling back to an unencrypted connection
otherwise.
import sys
#sys.path.insert(0, 'python{0}/'.format(sys.version_info[0]))
import mysql.connector
from mysql.connector.constants import ClientFlag
config = {
'user': 'ssluser',
'password': 'password',
'host': '127.0.0.1',
'client_flags': [ClientFlag.SSL],
'ssl_ca': '/opt/mysql/ssl/ca.pem',
'ssl_cert': '/opt/mysql/ssl/client-cert.pem',
'ssl_key': '/opt/mysql/ssl/client-key.pem',
}
cnx = mysql.connector.connect(**config)
cur = cnx.cursor(buffered=True)
cur.execute("SHOW STATUS LIKE 'Ssl_cipher'")
print(cur.fetchone())
cur.close()
cnx.close()
Connection Pooling
With either the pool_name or pool_size argument present, Connector/Python creates the new pool. If
the pool_name argument is not given, the connect() call automatically generates the name, composed
from whichever of the host, port, user, and database connection arguments are given, in that order. If
the pool_size argument is not given, the default size is 5 connections.
The pool_reset_session permits control over whether session variables are reset when the connection
is returned to the pool. The default is to reset them.
For additional information about connection pooling, see Section 9.3, “Connector/Python Connection
Pooling”.
Protocol Compression
The boolean compress argument indicates whether to use the compressed client/server protocol (default
False). This provides an easier alternative to setting the ClientFlag.COMPRESS flag. This argument is
available as of Connector/Python 1.1.2.
29
Converter Class
Converter Class
The converter_class argument takes a class and sets it when configuring the
connection. An AttributeError is raised if the custom converter class is not a subclass of
conversion.MySQLConverterBase.
Server Failover
The connect() method accepts a failover argument that provides information to use for server failover
in the event of connection failures. The argument value is a tuple or list of dictionaries (tuple is preferred
because it is nonmutable). Each dictionary contains connection arguments for a given server in the failover
sequence. Permitted dictionary values are: user, password, host, port, unix_socket, database,
pool_name, pool_size. This failover option was added in Connector/Python 1.2.1.
• option_files: Which option files to read. The value can be a file path name (a string) or a sequence
of path name strings. By default, Connector/Python reads no option files, so this argument must be given
explicitly to cause option files to be read. Files are read in the order specified.
• option_groups: Which groups to read from option files, if option files are read. The value can
be an option group name (a string) or a sequence of group name strings. If this argument is not
given, the default value is ['client', 'connector_python'] to read the [client] and
[connector_python] groups.
The use_pure argument is available as of Connector/Python 2.1.1. For more information about the C
extension, see Chapter 8, The Connector/Python C Extension.
30
Connector/Python Option-File Support
• option_files: Which option files to read. The value can be a file path name (a string) or a sequence
of path name strings. By default, Connector/Python reads no option files, so this argument must be given
explicitly to cause option files to be read. Files are read in the order specified.
• option_groups: Which groups to read from option files, if option files are read. The value can
be an option group name (a string) or a sequence of group name strings. If this argument is not
given, the default value is ['client', 'connector_python'], to read the [client] and
[connector_python] groups.
Connector/Python also supports the !include and !includedir inclusion directives within option files.
These directives work the same way as for other MySQL programs (see Using Option Files).
cnx = mysql.connector.connect(option_files='/etc/mysql/connectors.cnf')
mysql_option_files = [
'/etc/mysql/connectors.cnf',
'./development.cnf',
]
cnx = mysql.connector.connect(option_files=mysql_option_files)
Connector/Python reads no option files by default, for backward compatibility with versions older than
2.0.0. This differs from standard MySQL clients such as mysql or mysqldump, which do read option files
by default. To find out which option files the standard clients read on your system, invoke one of them with
its --help option and examine the output. For example:
If you specify the option_files connection argument to read option files, Connector/Python reads
the [client] and [connector_python] option groups by default. To specify explicitly which
groups to read, use the option_groups connection argument. The following example causes only the
[connector_python] group to be read:
cnx = mysql.connector.connect(option_files='/etc/mysql/connectors.cnf',
option_groups='connector_python')
Other connection arguments specified in the connect() call take precedence over options read from
option files. Suppose that /etc/mysql/connectors.conf contains these lines:
[client]
database=cpyapp
The following connect() call includes no database connection argument. The resulting connection uses
cpyapp, the database specified in the option file:
cnx = mysql.connector.connect(option_files='/etc/mysql/connectors.cnf')
By contrast, the following connect() call specifies a default database different from the one found in the
option file. The resulting connection uses cpyapp_dev as the default database, not cpyapp:
cnx2 = mysql.connector.connect(option_files='/etc/mysql/connectors.cnf',
database='cpyapp_dev')
31
Connector/Python Option-File Support
Connector/Python raises a ValueError if an option file cannot be read, or has already been read. This
includes files read by inclusion directives.
For the [connector_python] group, only options supported by Connector/Python are accepted.
Unrecognized options cause a ValueError to be raised.
Connector/Python treats option values in option files as strings and evaluates them using eval(). This
enables specification of option values more complex than simple scalars.
32
Chapter 8 The Connector/Python C Extension
Table of Contents
8.1 Application Development with the Connector/Python C Extension ................................................. 33
8.2 The _mysql_connector C Extension Module ................................................................................. 34
Connector/Python supports a C extension that interfaces with the MySQL C client library. For queries
that return large result sets, using the C Extension can improve performance compared to a “pure
Python” implementation of the MySQL client/server protocol. Section 8.1, “Application Development
with the Connector/Python C Extension”, describes how applications that use the mysql.connector
module can use the C Extension. It is also possible to use the C Extension directly, by importing the
_mysql_connector module rather than the mysql.connector module. See Section 8.2, “The
_mysql_connector C Extension Module”. For information about installing the C Extension, see Chapter 4,
Connector/Python Installation.
Note
• By default, use_pure (use the pure Python implementation) is False as of MySQL 8 and defaults to
True in earlier versions. If the C extension is not available on the system then use_pure is True.
• On Linux, the C and Python implementations are available as different packages. You can install one
or both implementations on the same system. On Windows and macOS, the packages include both
implementations.
For Connector/Python installations that include both implementations, it can optionally be toggled
it by passing use_pure=False (to use C implementation) or use_pure=True (to use the Python
implementation) as an argument to mysql.connector.connect().
• For Connector/Python installations that do not include the C Extension, passing use_pure=False to
mysql.connector.connect() raises an exception.
• For older Connector/Python installations that know nothing of the C Extension (before version 2.1.1),
passing use_pure to mysql.connector.connect() raises an exception regardless of its value.
Note
33
The _mysql_connector C Extension Module
If you built the C Extension from source, this directory should be the one containing
the C client library against which the extension was built.
If you need to check whether your Connector/Python installation is aware of the C Extension, test the
HAVE_CEXT value. There are different approaches for this. Suppose that your usual arguments for
mysql.connector.connect() are specified in a dictionary:
config = {
'user': 'scott',
'password': 'password',
'host': '127.0.0.1',
'database': 'employees',
}
The following example illustrates one way to add use_pure to the connection arguments:
import mysql.connector
If use_pure=False and the C Extension is not available, then Connector/Python will automatically fall
back to the pure Python implementation.
ccnx = _mysql_connector.MySQL()
ccnx.connect(user='scott', password='password',
host='127.0.0.1', database='employees')
ccnx.close()
For more information, see Chapter 11, Connector/Python C Extension API Reference.
34
Chapter 9 Connector/Python Other Topics
Table of Contents
9.1 Connector/Python Logging .......................................................................................................... 35
9.2 OpenTelemetry Support .............................................................................................................. 36
9.3 Connector/Python Connection Pooling ......................................................................................... 39
9.4 Connector/Python Django Back End ............................................................................................ 41
• Django back end for MySQL: Section 9.4, “Connector/Python Django Back End”
Outputting additional levels requires configuration. For example, to output debug events to sys.stderr set
logging.DEBUG and add the logging.StreamHandler handler. Additional handles can also be added, such
as logging.FileHandler. This example sets both:
# Classic Protocol Example
import logging
import mysql.connector
logger = logging.getLogger("mysql.connector")
logger.setLevel(logging.DEBUG)
stream_handler = logging.StreamHandler()
stream_handler.setFormatter(formatter)
logger.addHandler(stream_handler)
file_handler = logging.FileHandler("cpy.log")
file_handler.setFormatter(formatter)
logger.addHandler(file_handler)
logger = logging.getLogger("mysqlx")
logger.setLevel(logging.DEBUG)
stream_handler = logging.StreamHandler()
stream_handler.setFormatter(formatter)
logger.addHandler(stream_handler)
file_handler = logging.FileHandler("cpy.log")
file_handler.setFormatter(formatter)
logger.addHandler(file_handler)
35
OpenTelemetry Support
Introduction to OpenTelemetry
OpenTelemetry is an observability framework and toolkit designed to create and manage telemetry data
such as traces, metrics, and logs. Visit What is OpenTelemetry? for an explanation of what OpenTelemetry
offers.
Connector/Python only supports tracing, so this guide does not include information about metric and log
signals.
Instrumentation
For instrumenting an application, Connector/Python utilizes the official OpenTelemetry SDK to initialize
OpenTelemetry, and the official OpenTelemetry API to instrument the application's code. This emits
telemetry from the application and from utilized libraries that include instrumentation.
To enable OpenTelemetry support, first install the official OpenTelemetry API and SDK packages:
pip install opentelemetry-api
pip install opentelemetry-sdk
provider = TracerProvider()
processor = BatchSpanProcessor(ConsoleSpanExporter())
provider.add_span_processor(processor)
trace.set_tracer_provider(provider)
tracer = trace.get_tracer(__name__)
with tracer.start_as_current_span("app"):
my_app()
To better understand and get started using OpenTelemetry tracing for Python, see the official
OpenTelemetry Python Instrumentation guide.
MySQL Connector/Python
Connector/Python includes a MySQL instrumentor to instrument MySQL connections. This instrumentor
provides an API and usage similar to OpenTelemetry's own MySQL package named opentelemetry-
instrumentation-mysql.
An exception is raised if a system does not support OpenTelemetry when attempting to use the
instrumentor.
Note
36
Morphology of the Emitted Traces
assumes the system's OpenTelemetry SDK/API are installed and used instead of
the bundled version.
An example that utilizes the system's OpenTelemetry SDK/API and implements tracing with MySQL
Connector/Python:
import mysql.connector
provider = TracerProvider()
processor = BatchSpanProcessor(ConsoleSpanExporter())
provider.add_span_processor(processor)
trace.set_tracer_provider(provider)
tracer = trace.get_tracer(__name__)
config = {
"host": "127.0.0.1",
"user": "root",
"password": os.environ.get("password"),
"use_pure": True,
"port": 3306,
"database": "test",
}
with tracer.start_as_current_span("client_app"):
with mysql.connector.connect(**config) as cnx:
with cnx.cursor() as cur:
cur.execute("SELECT @@version")
_ = cur.fetchall()
Connection Span
• Time from connection initialization to the moment the connection ends. The span is named
connection.
• If the application does not provide a span, the connection span generated is a ROOT span, originating in
the connector.
• If the application does provide a span, the query span generated is a CHILD span, originating in the
connector.
Query Span
• Time from when an SQL statement is requested (on the connector side) to the moment the connector
finishes processing the server's reply to this statement.
37
Disabling Trace Context Propagation
• A query span is created for each query request sent to the server. If the application does not provide a
span, the query span generated is a ROOT span, originating in the connector.
• If the application does provide a span, the query span generated is a CHILD span, originating in the
connector.
• The query span is linked to the existing connection span of the connection the query was executed.
Context Propagation
By default, the trace context of the span in progress (if any) is propagated to the MySQL server.
Propagation has no effect when the MySQL server either disabled or does not support OpenTelemetry
(the trace context is ignored by the server), however, when connecting to a server with OpenTelemetry
enabled and configured, the server processes the propagated traces and creates parent-child relationships
between the spans from the connector and those from the server. In other words, there'll be trace
continuity. MySQL Server added OpenTelemetry support in MySQL Enterprise Edition version 8.1.0, which
is a commercial product.
• The trace context is propagated for statements with query attributes defined in the MySQL client/server
protocol, such as COM_QUERY.
The trace context is not propagated for statements without query attributes defined in the MySQL client/
server protocol, statements such as COM_PING.
• Trace context propagation is done via query attributes where a new attribute named "traceparent" is
defined. Its value is based on the current span context. For details on how this value is computed, read
the traceparent header W3C specification.
If the "traceparent" query attribute is manually set for a query, then it is not be overwritten by the
connector; it's assumed that it provides OTel context intended to forward to the server.
This implementation is distinct from the implementation provided through the MySQL client library (or the
related telemetry_client client-side plugin).
Note
38
Connector/Python Connection Pooling
Enabling the bundled OpenTelemetry installation requires a different installation workflow. Compare the
following:
The alternative to instead have Connector/Python utilize the bundled OpenTelemetry SDK/API libraries:
pip install mysql-connector-python[opentelemetry]
The [opentelemetry] syntax tells the installation driver to include the corresponding dependencies to utilize
the bundled installation.
When calling OpenTelemetry, the connector tries to load the corresponding modules from the system (the
Python environment from which the program is being executed); if the load fails (modules not found) it falls
back to the bundled installation. An exception is raised if neither installation dependencies are available.
Example code that directly utilizes the bundled installation, note the mysql.opentelemetry.sdk.* prefix as
opposed to opentelemetry.sdk.* demonstrated earlier:
import mysql.connector
from mysql.connector.opentelemetry.instrumentation import (
MySQLInstrumentor as OracleMySQLInstrumentor,
)
• Mixing the bundled and the system installations: consider the application code example utilizing the
bundled installation, if otel happens to be available in the system and the application tries to run the
example it will likely fail because the module mysql.connector.opentelemetry.instrumentation is loading
otel SDK and API resources from the system installation (higher precedence), while the application is
loading resources from the bundled installation.
• Trying to load an exporter from the bundled installation: the bundled installation includes the bare
minimum otel modules to carry out instrumentation and print the traces to the console, however, it does
not include an exporter. If you want to export traces, install otel in the system and utilize the system
installation.
• A pool opens a number of connections and handles thread safety when providing connections to
requesters.
39
Connector/Python Connection Pooling
• The size of a connection pool is configurable at pool creation time. It cannot be resized thereafter.
• A connection pool can be named at pool creation time. If no name is given, one is generated using the
connection parameters.
• The connection pool name can be retrieved from the connection pool or connections obtained from it.
• It is possible to have multiple connection pools. This enables applications to support pools of
connections to different MySQL servers, for example.
• For each connection request, the pool provides the next available connection. No round-robin or other
scheduling algorithm is used. If a pool is exhausted, a PoolError is raised.
• It is possible to reconfigure the connection parameters used by a pool. These apply to connections
obtained from the pool thereafter. Reconfiguring individual connections obtained from the pool by calling
the connection config() method is not supported.
• Middleware that maintains multiple connections to multiple MySQL servers and requires connections to
be readily available.
• websites that can have more “permanent” connections open to the MySQL server.
To create a connection pool implicitly: Open a connection and specify one or more pool-related
arguments (pool_name, pool_size). For example:
dbconfig = {
"database": "test",
"user": "joe"
}
The pool name is restricted to alphanumeric characters and the special characters ., _, *, $, and #. The
pool name must be no more than pooling.CNX_POOL_MAXNAMESIZE characters long (default 64).
The pool size must be greater than 0 and less than or equal to pooling.CNX_POOL_MAXSIZE (default
32).
With either the pool_name or pool_size argument present, Connector/Python creates the new pool. If
the pool_name argument is not given, the connect() call automatically generates the name, composed
from whichever of the host, port, user, and database connection arguments are given, in that order. If
the pool_size argument is not given, the default size is 5 connections.
Subsequent calls to connect() that name the same connection pool return connections from the existing
pool. Any pool_size or connection parameter arguments are ignored, so the following connect() calls
are equivalent to the original connect() call shown earlier:
cnx = mysql.connector.connect(pool_name = "mypool", pool_size = 3)
cnx = mysql.connector.connect(pool_name = "mypool", **dbconfig)
cnx = mysql.connector.connect(pool_name = "mypool")
Pooled connections obtained by calling connect() with a pool-related argument have a class
of PooledMySQLConnection (see Section 10.4, “pooling.PooledMySQLConnection Class”).
40
Connector/Python Django Back End
• To release a pooled connection obtained from a connection pool, invoke its close() method, just as
for any unpooled connection. However, for a pooled connection, close() does not actually close the
connection but returns it to the pool and makes it available for subsequent connection requests.
• A pooled connection cannot be reconfigured using its config() method. Connection changes must be
done through the pool object itself, as described shortly.
• A pooled connection has a pool_name property that returns the pool name.
To create a connection pool explicitly: Create a MySQLConnectionPool object (see Section 10.3,
“pooling.MySQLConnectionPool Class”):
dbconfig = {
"database": "test",
"user": "joe"
}
When you create a connection pool explicitly, it is possible to use the pool object's set_config() method
to reconfigure the pool connection parameters:
dbconfig = {
"database": "performance_schema",
"user": "admin",
"password": "password"
}
cnxpool.set_config(**dbconfig)
Connections requested from the pool after the configuration change use the new parameters. Connections
obtained before the change remain unaffected, but when they are closed (returned to the pool) are
reopened with the new parameters before being returned by the pool for subsequent connection requests.
Django Configuration
Django uses a configuration file named settings.py that contains a variable called DATABASES (see
https://docs.djangoproject.com/en/1.5/ref/settings/#std:setting-DATABASES). To configure Django to use
Connector/Python as the MySQL back end, the example found in the Django manual can be used as a
basis:
DATABASES = {
'default': {
'NAME': 'user_data',
41
Support for MySQL Features
'ENGINE': 'mysql.connector.django',
'HOST': '127.0.0.1',
'PORT': 3306,
'USER': 'mysql_user',
'PASSWORD': 'password',
'OPTIONS': {
'autocommit': True,
'use_oure': True,
'init_command': "SET foo='bar';"
},
}
}
Some MySQL features are enabled depending on the server version. For example, support for fractional
seconds precision is enabled when connecting to a server from MySQL 5.6.4 or higher. Django's
DateTimeField is stored in a MySQL column defined as DATETIME(6), and TimeField is stored as
TIME(6). For more information about fractional seconds support, see Fractional Seconds in Time Values.
42
Chapter 10 Connector/Python API Reference
Table of Contents
10.1 mysql.connector Module ............................................................................................................ 45
10.1.1 mysql.connector.connect() Method .................................................................................. 45
10.1.2 mysql.connector.apilevel Property ................................................................................... 46
10.1.3 mysql.connector.paramstyle Property .............................................................................. 46
10.1.4 mysql.connector.threadsafety Property ............................................................................ 46
10.1.5 mysql.connector.__version__ Property ............................................................................ 46
10.1.6 mysql.connector.__version_info__ Property ..................................................................... 46
10.2 connection.MySQLConnection Class .......................................................................................... 46
10.2.1 connection.MySQLConnection() Constructor .................................................................... 46
10.2.2 MySQLConnection.close() Method .................................................................................. 47
10.2.3 MySQLConnection.commit() Method ............................................................................... 47
10.2.4 MySQLConnection.config() Method ................................................................................. 47
10.2.5 MySQLConnection.connect() Method .............................................................................. 47
10.2.6 MySQLConnection.cursor() Method ................................................................................. 48
10.2.7 MySQLConnection.cmd_change_user() Method ............................................................... 49
10.2.8 MySQLConnection.cmd_debug() Method ......................................................................... 49
10.2.9 MySQLConnection.cmd_init_db() Method ........................................................................ 49
10.2.10 MySQLConnection.cmd_ping() Method .......................................................................... 49
10.2.11 MySQLConnection.cmd_process_info() Method ............................................................. 49
10.2.12 MySQLConnection.cmd_process_kill() Method ............................................................... 50
10.2.13 MySQLConnection.cmd_query() Method ........................................................................ 50
10.2.14 MySQLConnection.cmd_query_iter() Method ................................................................. 50
10.2.15 MySQLConnection.cmd_quit() Method ........................................................................... 51
10.2.16 MySQLConnection.cmd_refresh() Method ...................................................................... 51
10.2.17 MySQLConnection.cmd_reset_connection() Method ....................................................... 51
10.2.18 MySQLConnection.cmd_shutdown() Method .................................................................. 51
10.2.19 MySQLConnection.cmd_statistics() Method ................................................................... 51
10.2.20 MySQLConnection.disconnect() Method ........................................................................ 52
10.2.21 MySQLConnection.get_row() Method ............................................................................ 52
10.2.22 MySQLConnection.get_rows() Method ........................................................................... 52
10.2.23 MySQLConnection.get_server_info() Method ................................................................. 52
10.2.24 MySQLConnection.get_server_version() Method ............................................................ 52
10.2.25 MySQLConnection.is_connected() Method .................................................................... 52
10.2.26 MySQLConnection.isset_client_flag() Method ................................................................ 53
10.2.27 MySQLConnection.ping() Method .................................................................................. 53
10.2.28 MySQLConnection.reconnect() Method ......................................................................... 53
10.2.29 MySQLConnection.reset_session() Method .................................................................... 53
10.2.30 MySQLConnection.rollback() Method ............................................................................. 54
10.2.31 MySQLConnection.set_charset_collation() Method ......................................................... 54
10.2.32 MySQLConnection.set_client_flags() Method ................................................................. 54
10.2.33 MySQLConnection.shutdown() Method .......................................................................... 55
10.2.34 MySQLConnection.start_transaction() Method ................................................................ 55
10.2.35 MySQLConnection.autocommit Property ........................................................................ 55
10.2.36 MySQLConnection.unread_results Property ................................................................... 56
10.2.37 MySQLConnection.can_consume_results Property ......................................................... 56
10.2.38 MySQLConnection.charset Property .............................................................................. 56
10.2.39 MySQLConnection.collation Property ............................................................................. 56
10.2.40 MySQLConnection.connection_id Property .................................................................... 56
43
10.2.41 MySQLConnection.database Property ........................................................................... 56
10.2.42 MySQLConnection.get_warnings Property ..................................................................... 57
10.2.43 MySQLConnection.in_transaction Property .................................................................... 57
10.2.44 MySQLConnection.raise_on_warnings Property ............................................................. 57
10.2.45 MySQLConnection.server_host Property ....................................................................... 58
10.2.46 MySQLConnection.server_port Property ........................................................................ 58
10.2.47 MySQLConnection.sql_mode Property .......................................................................... 58
10.2.48 MySQLConnection.time_zone Property ......................................................................... 58
10.2.49 MySQLConnection.unix_socket Property ....................................................................... 59
10.2.50 MySQLConnection.user Property .................................................................................. 59
10.3 pooling.MySQLConnectionPool Class ........................................................................................ 59
10.3.1 pooling.MySQLConnectionPool Constructor ..................................................................... 59
10.3.2 MySQLConnectionPool.add_connection() Method ............................................................ 59
10.3.3 MySQLConnectionPool.get_connection() Method ............................................................. 60
10.3.4 MySQLConnectionPool.set_config() Method .................................................................... 60
10.3.5 MySQLConnectionPool.pool_name Property .................................................................... 60
10.4 pooling.PooledMySQLConnection Class ..................................................................................... 61
10.4.1 pooling.PooledMySQLConnection Constructor ................................................................. 61
10.4.2 PooledMySQLConnection.close() Method ........................................................................ 61
10.4.3 PooledMySQLConnection.config() Method ....................................................................... 62
10.4.4 PooledMySQLConnection.pool_name Property ................................................................ 62
10.5 cursor.MySQLCursor Class ....................................................................................................... 62
10.5.1 cursor.MySQLCursor Constructor .................................................................................... 63
10.5.2 MySQLCursor.add_attribute() Method ............................................................................. 63
10.5.3 MySQLCursor.clear_attributes() Method .......................................................................... 64
10.5.4 MySQLCursor.get_attributes() Method ............................................................................. 64
10.5.5 MySQLCursor.callproc() Method ..................................................................................... 64
10.5.6 MySQLCursor.close() Method ......................................................................................... 65
10.5.7 MySQLCursor.execute() Method ..................................................................................... 65
10.5.8 MySQLCursor.executemany() Method ............................................................................. 66
10.5.9 MySQLCursor.fetchall() Method ...................................................................................... 67
10.5.10 MySQLCursor.fetchmany() Method ................................................................................ 67
10.5.11 MySQLCursor.fetchone() Method .................................................................................. 67
10.5.12 MySQLCursor.fetchwarnings() Method .......................................................................... 68
10.5.13 MySQLCursor.stored_results() Method .......................................................................... 68
10.5.14 MySQLCursor.column_names Property ......................................................................... 68
10.5.15 MySQLCursor.description Property ................................................................................ 69
10.5.16 MySQLCursor.lastrowid Property .................................................................................. 70
10.5.17 MySQLCursor.rowcount Property .................................................................................. 70
10.5.18 MySQLCursor.statement Property ................................................................................. 70
10.5.19 MySQLCursor.with_rows Property ................................................................................. 70
10.6 Subclasses cursor.MySQLCursor ............................................................................................... 71
10.6.1 cursor.MySQLCursorBuffered Class ................................................................................ 71
10.6.2 cursor.MySQLCursorRaw Class ...................................................................................... 71
10.6.3 cursor.MySQLCursorBufferedRaw Class ......................................................................... 72
10.6.4 cursor.MySQLCursorDict Class ....................................................................................... 72
10.6.5 cursor.MySQLCursorBufferedDict Class .......................................................................... 73
10.6.6 cursor.MySQLCursorNamedTuple Class ......................................................................... 73
10.6.7 cursor.MySQLCursorBufferedNamedTuple Class ............................................................. 73
10.6.8 cursor.MySQLCursorPrepared Class ............................................................................... 74
10.7 constants.ClientFlag Class ........................................................................................................ 75
10.8 constants.FieldType Class ......................................................................................................... 75
10.9 constants.SQLMode Class ........................................................................................................ 76
10.10 constants.CharacterSet Class .................................................................................................. 76
44
mysql.connector Module
This chapter contains the public API reference for Connector/Python. Examples should be considered
working for Python 2.7, and Python 3.1 and greater. They might also work for older versions (such as
Python 2.4) unless they use features introduced in newer Python versions. For example, exception
handling using the as keyword was introduced in Python 2.6 and will not work in Python 2.4.
Note
The following overview shows the mysql.connector package with its modules. Currently, only the most
useful modules, classes, and methods for end users are documented.
mysql.connector
errorcode
errors
connection
constants
conversion
cursor
dbapi
locales
eng
client_error
protocol
utils
A connection with the MySQL server can be established using either the mysql.connector.connect()
method or the mysql.connector.MySQLConnection() class:
cnx = mysql.connector.connect(user='joe', database='test')
cnx = MySQLConnection(user='joe', database='test')
45
mysql.connector.apilevel Property
For descriptions of connection methods and properties, see Section 10.2, “connection.MySQLConnection
Class”.
>>> mysql.connector.apilevel
'2.0'
>>> mysql.connector.paramstyle
'pyformat'
>>> mysql.connector.threadsafety
1
>>> mysql.connector.__version__
'1.1.0'
>>> mysql.connector.__version_info__
(1, 1, 0, 'a', 0)
46
MySQLConnection.close() Method
cnx = MySQLConnection(**kwargs)
The MySQLConnection constructor initializes the attributes and when at least one argument is passed, it
tries to connect to the MySQL server.
For a complete list of arguments, see Section 7.1, “Connector/Python Connection Arguments”.
For a connection obtained from a connection pool, close() does not actually close it but returns it to
the pool and makes it available for subsequent connection requests. See Section 9.3, “Connector/Python
Connection Pooling”.
>>> cursor.execute("INSERT INTO employees (first_name) VALUES (%s), (%s)", ('Jane', 'Mary'))
>>> cnx.commit()
To roll back instead and discard modifications, see the rollback() method.
Configures a MySQLConnection instance after it has been instantiated. For a complete list of possible
arguments, see Section 7.1, “Connector/Python Connection Arguments”.
Arguments:
You could use the config() method to change (for example) the user name, then call reconnect().
Example:
cnx = mysql.connector.connect(user='joe', database='test')
# Connected as 'joe'
cnx.config(user='jane')
cnx.reconnect()
# Now connected as 'jane'
For a connection obtained from a connection pool, config() raises an exception. See Section 9.3,
“Connector/Python Connection Pooling”.
47
MySQLConnection.cursor() Method
Syntax:
MySQLConnection.connect(**kwargs)
This method sets up a connection, establishing a session with the MySQL server. If no arguments are
given, it uses the already configured or default values. For a complete list of possible arguments, see
Section 7.1, “Connector/Python Connection Arguments”.
Arguments:
Example:
cnx = MySQLConnection(user='joe', database='test')
For a connection obtained from a conection pool, the connection object class is
PooledMySQLConnection. A pooled connection differs from an unpooled connection as described in
Section 9.3, “Connector/Python Connection Pooling”.
This method returns a MySQLCursor() object, or a subclass of it depending on the passed arguments.
The returned object is a cursor.CursorBase instance. For more information about cursor objects, see
Section 10.5, “cursor.MySQLCursor Class”, and Section 10.6, “Subclasses cursor.MySQLCursor”.
Arguments may be passed to the cursor() method to control what type of cursor to create:
• If buffered is True, the cursor fetches all rows from the server after an operation is executed. This is
useful when queries return small result sets. buffered can be used alone, or in combination with the
dictionary or named_tuple argument.
buffered can also be passed to connect() to set the default buffering mode for all cursors created
from the connection object. See Section 7.1, “Connector/Python Connection Arguments”.
For information about the implications of buffering, see Section 10.6.1, “cursor.MySQLCursorBuffered
Class”.
• If raw is True, the cursor skips the conversion from MySQL data types to Python types when fetching
rows. A raw cursor is usually used to get better performance or when you want to do the conversion
yourself.
raw can also be passed to connect() to set the default raw mode for all cursors created from the
connection object. See Section 7.1, “Connector/Python Connection Arguments”.
• If dictionary is True, the cursor returns rows as dictionaries. This argument is available as of
Connector/Python 2.0.0.
• If named_tuple is True, the cursor returns rows as named tuples. This argument is available as of
Connector/Python 2.0.0.
• If prepared is True, the cursor is used for executing prepared statements. This argument is available
as of Connector/Python 1.1.2. The C extension supports this as of Connector/Python 8.0.17.
48
MySQLConnection.cmd_change_user() Method
• The cursor_class argument can be used to pass a class to use for instantiating a new cursor. It must
be a subclass of cursor.CursorBase.
Syntax:
cnx.cmd_change_user(username='', password='', database='', charset=33)
This method makes specified database the default (current) database. In subsequent queries, this
database is the default for table references that include no explicit database qualifier.
Deprecation
49
MySQLConnection.cmd_process_kill() Method
Deprecation
Asks the server to kill the thread specified by mysql_pid. Although still available, it is better to use the
KILL SQL statement.
>>> cnx.cmd_process_kill(123)
>>> cnx.cmd_query('KILL 123')
This method sends the given statement to the MySQL server and returns a result. To send multiple
statements, use the cmd_query_iter() method instead.
The returned dictionary contains information depending on what kind of query was executed. If the query is
a SELECT statement, the result contains information about columns. Other statements return a dictionary
containing OK or EOF packet information.
Errors received from the MySQL server are raised as exceptions. An InterfaceError is raised when
multiple results are found.
Returns a dictionary.
Similar to the cmd_query() method, but returns a generator object to iterate through results. Use
cmd_query_iter() when sending multiple statements, and separate the statements with semicolons.
The following example shows how to iterate through the results after sending multiple statements:
statement = 'SELECT 1; INSERT INTO t1 VALUES (); SELECT 2'
for result in cnx.cmd_query_iter(statement):
if 'columns' in result:
columns = result['columns']
rows = cnx.get_rows()
else:
# do something useful with INSERT result
50
MySQLConnection.cmd_quit() Method
Deprecation
This method flushes tables or caches, or resets replication server information. The connected user must
have the RELOAD privilege.
The options argument should be a bitmask value constructed using constants from the
constants.RefreshOption class.
Example:
Resets the connection by sending a COM_RESET_CONNECTION command to the server to clear the
session state.
This method permits the session state to be cleared without reauthenticating. For MySQL servers older
than 5.7.3 (when COM_RESET_CONNECTION was introduced), the reset_session() method can be
used instead. That method resets the session state by reauthenticating, which is more expensive.
Asks the database server to shut down. The connected user must have the SHUTDOWN privilege.
51
MySQLConnection.disconnect() Method
Returns a dictionary containing information about the MySQL server including uptime in seconds and the
number of running threads, questions, reloads, and open tables.
To shut down the connection without sending a QUIT command first, use shutdown().
• The row as a tuple containing byte objects, or None when no more rows are available.
• EOF packet information as a dictionary containing status_flag and warning_count, or None when
the row returned is not the last row.
This method retrieves all or remaining rows of a query result set, returning a tuple containing the rows as
sequences and the EOF packet information. The count argument can be used to obtain a given number of
rows. If count is not specified or is None, all rows are retrieved.
• A list of tuples containing the row data as byte objects, or an empty list when no rows are available.
Returns a tuple.
52
MySQLConnection.isset_client_flag() Method
This method checks whether the connection to MySQL is available using the ping() method, but unlike
ping(), is_connected() returns True when the connection is available, False otherwise.
This method returns True if the client flag was set, False otherwise.
When reconnect is set to True, one or more attempts are made to try to reconnect to the MySQL
server, and these options are forwarded to the reconnect()>method. Use the delay argument (seconds) if
you want to wait between each retry.
When the connection is not available, an InterfaceError is raised. Use the is_connected() method to
check the connection without raising an error.
The argument attempts specifies the number of times a reconnect is tried. The delay argument is the
number of seconds to wait between each retry.
You might set the number of attempts higher and use a longer delay when you expect the MySQL server to
be down for maintenance, or when you expect the network to be temporarily unavailable.
Resets the connection by reauthenticating to clear the session state. user_variables, if given, is a
dictionary of user variable names and values. session_variables, if given, is a dictionary of system
variable names and values. The method sets each variable to the given value.
Example:
user_variables = {'var1': '1', 'var2': '10'}
session_variables = {'wait_timeout': 100000, 'sql_mode': 'TRADITIONAL'}
53
MySQLConnection.rollback() Method
self.cnx.reset_session(user_variables, session_variables)
This method resets the session state by reauthenticating. For MySQL servers 5.7 or higher, the
cmd_reset_connection() method is a more lightweight alternative.
>>> cursor.execute("INSERT INTO employees (first_name) VALUES (%s), (%s)", ('Jane', 'Mary'))
>>> cnx.rollback()
This method sets the character set and collation to be used for the current connection. The charset
argument can be either the name of a character set, or the numerical equivalent as defined in
constants.CharacterSet.
When collation is None, the default collation for the character set is used.
In the following example, we set the character set to latin1 and the collation to latin1_swedish_ci
(the default collation for: latin1):
This method sets the client flags to use when connecting to the MySQL server, and returns the new value
as an integer. The flags argument can be either an integer or a sequence of valid client flag values (see
Section 10.7, “constants.ClientFlag Class”).
If flags is a sequence, each item in the sequence sets the flag when the value is positive or unsets it
when negative. For example, to unset LONG_FLAG and set the FOUND_ROWS flags:
54
MySQLConnection.shutdown() Method
Note
Client flags are only set or used when connecting to the MySQL server. It is
therefore necessary to reconnect after making changes.
Unlike disconnect(), shutdown() closes the client connection without attempting to send a QUIT
command to the server first. Thus, it will not block if the connection is disrupted for some reason such as
network failure.
The default consistent_snapshot value is False. If the value is True, Connector/Python sends WITH
CONSISTENT SNAPSHOT with the statement. MySQL ignores this for isolation levels for which that option
does not apply.
The default isolation_level value is None, and permitted values are 'READ UNCOMMITTED', 'READ
COMMITTED', 'REPEATABLE READ', and 'SERIALIZABLE'. If the isolation_level value is None,
no isolation level is sent, so the default level applies.
The readonly argument can be True to start the transaction in READ ONLY mode or False to start
it in READ WRITE mode. If readonly is omitted, the server's default access mode is used. For details
about transaction access mode, see the description for the START TRANSACTION statement at START
TRANSACTION, COMMIT, and ROLLBACK Statements. If the server is older than MySQL 5.6.5, it does
not support setting the access mode and Connector/Python raises a ValueError.
To determine whether a transaction is active for the connection, use the in_transaction property.
start_transaction() was added in MySQL Connector/Python 1.1.0. The readonly argument was
added in Connector/Python 1.1.5.
55
MySQLConnection.unread_results Property
Note
When the autocommit is turned off, you must commit transactions when using transactional storage
engines such as InnoDB or NDBCluster.
>>> cnx.autocommit
False
>>> cnx.autocommit = True
>>> cnx.autocommit
True
Do not set the value of this property, as only the connector should change the value. In other words, treat
this as a read-only property.
56
MySQLConnection.get_warnings Property
Returns a string.
Fetching warnings automatically can be useful when debugging queries. Cursors make warnings available
through the method MySQLCursor.fetchwarnings().
>>> cnx.start_transaction()
>>> cnx.in_transaction
True
>>> cnx.commit()
>>> cnx.in_transaction
False
Setting raise_on_warnings also sets get_warnings because warnings need to be fetched so they
can be raised as exceptions.
Note
You might always want to set the SQL mode if you would like to have the
MySQL server directly report warnings as errors (see Section 10.2.47,
“MySQLConnection.sql_mode Property”). It is also good to use transactional
engines so transactions can be rolled back when catching the exception.
Result sets needs to be fetched completely before any exception can be raised. The following example
shows the execution of a query that produces a warning:
57
MySQLConnection.server_host Property
Returns a string.
Returns an integer.
u'REAL_AS_FLOAT,NO_ZERO_DATE'
Returns a string.
58
MySQLConnection.unix_socket Property
Returns a string.
Returns a string.
Returns a string.
Arguments:
• pool_name: The pool name. If this argument is not given, Connector/Python automatically generates
the name, composed from whichever of the host, port, user, and database connection arguments
are given in kwargs, in that order.
It is not an error for multiple pools to have the same name. An application that must distinguish pools by
their pool_name property should create each pool with a distinct name.
• pool_size: The pool size. If this argument is not given, the default is 5.
• pool_reset_session: Whether to reset session variables when the connection is returned to the pool.
This argument was added in Connector/Python 1.1.5. Before 1.1.5, session variables are not reset.
Example:
dbconfig = {
"database": "test",
"user": "joe",
}
59
MySQLConnectionPool.get_connection() Method
Syntax:
cnxpool.add_connection(cnx = None)
This method adds a new or existing MySQLConnection to the pool, or raises a PoolError if the pool is
full.
Arguments:
• cnx: The MySQLConnection object to be added to the pool. If this argument is missing, the pool
creates a new connection and adds it.
Example:
cnxpool.add_connection() # add new connection to pool
cnxpool.add_connection(cnx) # add existing connection to pool
This method returns a connection from the pool, or raises a PoolError if no connections are available.
Example:
cnx = cnxpool.get_connection()
This method sets the configuration parameters for connections in the pool. Connections requested from
the pool after the configuration change use the new parameters. Connections obtained before the change
remain unaffected, but when they are closed (returned to the pool) are reopened with the new parameters
before being returned by the pool for subsequent connection requests.
Arguments:
Example:
dbconfig = {
"database": "performance_schema",
"user": "admin",
"password": "password",
}
cnxpool.set_config(**dbconfig)
60
pooling.PooledMySQLConnection Class
cnxpool.pool_name
Example:
name = cnxpool.pool_name
• To release a pooled connection obtained from a connection pool, invoke its close() method, just as
for any unpooled connection. However, for a pooled connection, close() does not actually close the
connection but returns it to the pool and makes it available for subsequent connection requests.
• A pooled connection cannot be reconfigured using its config() method. Connection changes must be
done through the pool object itself, as described by Section 9.3, “Connector/Python Connection Pooling”.
• A pooled connection has a pool_name property that returns the pool name.
This constructor takes connection pool and connection arguments and returns a pooled connection. It is
used by the MySQLConnectionPool class.
Arguments:
Example:
pcnx = mysql.connector.pooling.PooledMySQLConnection(cnxpool, cnx)
For a pooled connection, close() does not actually close it but returns it to the pool and makes it
available for subsequent connection requests.
If the pool configuration parameters are changed, a returned connection is closed and reopened with the
new configuration before being returned from the pool again in response to a connection request.
61
PooledMySQLConnection.config() Method
This property returns the name of the connection pool to which the connection belongs.
Example:
cnx = cnxpool.get_connection()
name = cnx.pool_name
cnx = mysql.connector.connect(database='world')
cursor = cnx.cursor()
Several related classes inherit from MySQLCursor. To create a cursor of one of these types, pass the
appropriate arguments to cursor():
• MySQLCursorDict creates a cursor that returns rows as dictionaries. See Section 10.6.4,
“cursor.MySQLCursorDict Class”.
cursor = cnx.cursor(dictionary=True)
• MySQLCursorNamedTuple creates a cursor that returns rows as named tuples. See Section 10.6.6,
“cursor.MySQLCursorNamedTuple Class”.
62
cursor.MySQLCursor Constructor
cursor = cnx.cursor(named_tuple=True)
• MySQLCursorPrepared creates a cursor for executing prepared statements. See Section 10.6.8,
“cursor.MySQLCursorPrepared Class”.
cursor = cnx.cursor(prepared=True)
cnx = mysql.connector.connect(database='world')
cursor = cnx.cursor()
cnx = mysql.connector.connect(database='world')
cursor = MySQLCursor(cnx)
The connection argument is optional. If omitted, the cursor is created but its execute() method raises an
exception.
Adds a new named query attribute to the list, as part of MySQL server's Query Attributes functionality.
name: The name must be a string, but no other validation checks are made; attributes are sent as is to the
server and errors, if any, will be detected and reported by the server.
value: a value converted to the MySQL Binary Protocol, similar to how prepared statement parameters
are converted. An error is reported if the conversion fails.
Query attributes must be enabled on the server, and are disabled by default. A warning is logged when
setting query attributes server connection that does not support them. See also Prerequisites for Using
Query Attributes for enabling the query_attributes MySQL server component.
cur.add_attribute(*("bar", "3"))
cur.execute("SELECT * FROM products WHERE price < ?", 10)
# The query above sent attibutes ("foo", 2) and ("bar", "3").
63
MySQLCursor.clear_attributes() Method
print(cur.get_attributes())
# prints:
[("foo", 2), ("bar", "3"), ("page_name", "root"), ("previous_page", "login")]
cur.clear_attributes()
print(cur.get_attributes())
# prints:
[]
cur.execute("SELECT first_name, last_name FROM clients")
# The query above did not send any attibute.
Clear the list of query attributes on the connector's side, as set by Section 10.5.2,
“MySQLCursor.add_attribute() Method”.
Return a list of existing query attributes, as set by Section 10.5.2, “MySQLCursor.add_attribute() Method”.
This method calls the stored procedure named by the proc_name argument. The args sequence of
parameters must contain one entry for each argument that the procedure expects. callproc() returns
a modified copy of the input sequence. Input parameters are left untouched. Output and input/output
parameters may be replaced with new values.
Result sets produced by the stored procedure are automatically fetched and stored as
MySQLCursorBuffered instances. For more information about using these result sets, see
stored_results().
64
MySQLCursor.close() Method
Suppose that a stored procedure takes two parameters, multiplies the values, and returns the product:
CREATE PROCEDURE multiply(IN pFac1 INT, IN pFac2 INT, OUT pProd INT)
BEGIN
SET pProd := pFac1 * pFac2;
END;
Connector/Python 1.2.1 and up permits parameter types to be specified. To do this, specify a parameter
as a two-item tuple consisting of the parameter value and type. Suppose that a procedure sp1() has this
definition:
CREATE PROCEDURE sp1(IN pStr1 VARCHAR(20), IN pStr2 VARCHAR(20),
OUT pConCat VARCHAR(100))
BEGIN
SET pConCat := CONCAT(pStr1, pStr2);
END;
To execute this procedure from Connector/Python, specifying a type for the OUT parameter, do this:
args = ('ham', 'eggs', (0, 'CHAR'))
result_args = cursor.callproc('sp1', args)
print(result_args[2])
Use close() when you are done using a cursor. This method closes the cursor, resets all results, and
ensures that the cursor object has no reference to its original connection object.
This method executes the given database operation (query or command). The parameters found in
the tuple or dictionary params are bound to the variables in the operation. Specify variables using %s or
%(name)s parameter style (that is, using format or pyformat style). execute() returns an iterator if
multi is True.
Note
In Python, a tuple containing a single value must include a comma. For example,
('abc') is evaluated as a scalar while ('abc',) is evaluated as a tuple.
This example inserts information about a new employee, then selects the data for that person. The
statements are executed as separate execute() operations:
insert_stmt = (
"INSERT INTO employees (emp_no, first_name, last_name, hire_date) "
65
MySQLCursor.executemany() Method
The data values are converted as necessary from Python objects to something MySQL understands. In the
preceding example, the datetime.date() instance is converted to '2012-03-23'.
If multi is set to True, execute() is able to execute multiple statements specified in the operation
string. It returns an iterator that enables processing the result of each statement. However, using
parameters does not work well in this case, and it is usually a good idea to execute each statement on its
own.
The following example selects and inserts data in a single execute() operation and displays the result of
each statement:
operation = 'SELECT 1; INSERT INTO t1 VALUES (); SELECT 2'
for result in cursor.execute(operation, multi=True):
if result.with_rows:
print("Rows produced by statement '{}':".format(
result.statement))
print(result.fetchall())
else:
print("Number of rows affected by statement '{}': {}".format(
result.statement, result.rowcount))
If the connection is configured to fetch warnings, warnings generated by the operation are available
through the MySQLCursor.fetchwarnings() method.
This method prepares a database operation (query or command) and executes it against all parameter
sequences or mappings found in the sequence seq_of_params.
Note
In Python, a tuple containing a single value must include a comma. For example,
('abc') is evaluated as a scalar while ('abc',) is evaluated as a tuple.
In most cases, the executemany() method iterates through the sequence of parameters, each time
passing the current parameters to the execute() method.
An optimization is applied for inserts: The data values given by the parameter sequences are batched
using multiple-row syntax. The following example inserts three records:
data = [
('Jane', date(2005, 2, 12)),
('Joe', date(2006, 5, 23)),
('John', date(2010, 10, 3)),
]
stmt = "INSERT INTO employees (first_name, hire_date) VALUES (%s, %s)"
cursor.executemany(stmt, data)
For the preceding example, the INSERT statement sent to MySQL is:
66
MySQLCursor.fetchall() Method
With the executemany() method, it is not possible to specify multiple statements to execute in the
operation argument. Doing so raises an InternalError exception. Consider using execute() with
multi=True instead.
The method fetches all (or all remaining) rows of a query result set and returns a list of tuples. If no more
rows are available, it returns an empty list.
The following example shows how to retrieve the first two rows of a result set, and then retrieve any
remaining rows:
>>> cursor.execute("SELECT * FROM employees ORDER BY emp_no")
>>> head_rows = cursor.fetchmany(size=2)
>>> remaining_rows = cursor.fetchall()
You must fetch all rows for the current query before executing new statements using the same connection.
This method fetches the next set of rows of a query result and returns a list of tuples. If no more rows are
available, it returns an empty list.
The number of rows returned can be specified using the size argument, which defaults to one. Fewer
rows are returned if fewer rows are available than specified.
You must fetch all rows for the current query before executing new statements using the same connection.
This method retrieves the next row of a query result set and returns a single sequence, or None if no
more rows are available. By default, the returned tuple consists of data returned by the MySQL server,
converted to Python objects. If the cursor is a raw cursor, no such conversion occurs; see Section 10.6.2,
“cursor.MySQLCursorRaw Class”.
The fetchone() method is used by fetchall() and fetchmany(). It is also used when a cursor is used as
an iterator.
The following example shows two equivalent ways to process a query result. The first uses fetchone()
in a while loop, the second uses the cursor as an iterator:
# Using a while loop
67
MySQLCursor.fetchwarnings() Method
You must fetch all rows for the current query before executing new statements using the same connection.
This method returns a list of tuples containing warnings generated by the previously executed operation.
To set whether to fetch warnings, use the connection's get_warnings property.
When warnings are generated, it is possible to raise errors instead, using the connection's
raise_on_warnings property.
This method returns a list iterator object that can be used to process result sets produced by a stored
procedure executed using the callproc() method. The result sets remain available until you use the cursor
to execute another operation or call another stored procedure.
The following example executes a stored procedure that produces two result sets, then uses
stored_results() to retrieve them:
>>> cursor.callproc('myproc')
()
>>> for result in cursor.stored_results():
... print result.fetchall()
...
[(1,)]
[(2,)]
68
MySQLCursor.description Property
This read-only property returns the column names of a result set as sequence of Unicode strings.
The following example shows how to create a dictionary from a tuple containing data with keys using
column_names:
cursor.execute("SELECT last_name, first_name, hire_date "
"FROM employees WHERE emp_no = %s", (123,))
row = dict(zip(cursor.column_names, cursor.fetchone()))
print("{last_name}, {first_name}: {hire_date}".format(row))
Alternatively, as of Connector/Python 2.0.0, you can fetch rows as dictionaries directly; see Section 10.6.4,
“cursor.MySQLCursorDict Class”.
This read-only property returns a list of tuples describing the columns in a result set. Each tuple in the list
contains values as follows:
(column_name,
type,
None,
None,
None,
None,
null_ok,
column_flags)
...
69
MySQLCursor.lastrowid Property
column_flags = 4225
The column_flags value is an instance of the constants.FieldFlag class. To see how to interpret it,
do this:
>>> from mysql.connector import FieldFlag
>>> FieldFlag.desc
This read-only property returns the value generated for an AUTO_INCREMENT column by the previous
INSERT or UPDATE statement or None when there is no such value available. For example, if you
perform an INSERT into a table that contains an AUTO_INCREMENT column, lastrowid returns the
AUTO_INCREMENT value for the new row. For an example, see Section 5.3, “Inserting Data Using
Connector/Python”.
The lastrowid property is like the mysql_insert_id() C API function; see mysql_insert_id().
This read-only property returns the number of rows returned for SELECT statements, or the number of
rows affected by DML statements such as INSERT or UPDATE. For an example, see Section 10.5.7,
“MySQLCursor.execute() Method”.
For nonbuffered cursors, the row count cannot be known before the rows have been fetched. In this case,
the number of rows is -1 immediately after query execution and is incremented as rows are fetched.
This read-only property returns the last executed statement as a string. The statement property can be
useful for debugging and displaying what was sent to the MySQL server.
The string can contain multiple statements if a multiple-statement string was executed. This occurs for
execute() with multi=True. In this case, the statement property contains the entire statement
string and the execute() call returns an iterator that can be used to process results from the individual
statements. The statement property for this iterator shows statement strings for the individual
statements.
70
Subclasses cursor.MySQLCursor
This read-only property returns True or False to indicate whether the most recently executed operation
could have produced rows.
The with_rows property is useful when it is necessary to determine whether a statement produces a
result set and you need to fetch rows. The following example retrieves the rows returned by the SELECT
statements, but reports only the affected-rows value for the UPDATE statement:
import mysql.connector
After executing a query, a MySQLCursorBuffered cursor fetches the entire result set from the server and
buffers the rows.
For queries executed using a buffered cursor, row-fetching methods such as fetchone() return rows
from the set of buffered rows. For nonbuffered cursors, rows are not fetched from the server until a row-
fetching method is called. In this case, you must be sure to fetch all rows of the result set before executing
any other statements on the same connection, or an InternalError (Unread result found) exception will
be raised.
MySQLCursorBuffered can be useful in situations where multiple queries, with small result sets, need to
be combined or computed with each other.
To create a buffered cursor, use the buffered argument when calling a connection's cursor() method.
Alternatively, to make all cursors created from the connection buffered by default, use the buffered
connection argument.
Example:
import mysql.connector
cnx = mysql.connector.connect()
For a practical use case, see Section 6.1, “Tutorial: Raise Employee's Salary Using a Buffered Cursor”.
71
cursor.MySQLCursorBufferedRaw Class
A MySQLCursorRaw cursor skips the conversion from MySQL data types to Python types when fetching
rows. A raw cursor is usually used to get better performance or when you want to do the conversion
yourself.
To create a raw cursor, use the raw argument when calling a connection's cursor() method.
Alternatively, to make all cursors created from the connection raw by default, use the raw connection
argument.
Example:
import mysql.connector
cnx = mysql.connector.connect()
To create a buffered raw cursor, use the raw and buffered arguments when calling a connection's
cursor() method. Alternatively, to make all cursors created from the connection raw and buffered by
default, use the raw and buffered connection arguments.
Example:
import mysql.connector
cnx = mysql.connector.connect()
# All cursors created from cnx2 will be raw and buffered by default
cnx2 = mysql.connector.connect(raw=True, buffered=True)
A MySQLCursorDict cursor returns each row as a dictionary. The keys for each dictionary object are the
column names of the MySQL result.
Example:
cnx = mysql.connector.connect(database='world')
cursor = cnx.cursor(dictionary=True)
cursor.execute("SELECT * FROM country WHERE Continent = 'Europe'")
72
cursor.MySQLCursorBufferedDict Class
print("Countries in Europe:")
for row in cursor:
print("* {Name}".format(Name=row['Name']
To get a buffered cursor that returns dictionaries, add the buffered argument when instantiating a new
dictionary cursor:
cursor = cnx.cursor(dictionary=True, buffered=True)
A MySQLCursorNamedTuple cursor returns each row as a named tuple. The attributes for each named-
tuple object are the column names of the MySQL result.
Example:
cnx = mysql.connector.connect(database='world')
cursor = cnx.cursor(named_tuple=True)
cursor.execute("SELECT * FROM country WHERE Continent = 'Europe'")
73
cursor.MySQLCursorPrepared Class
To get a buffered cursor that returns named tuples, add the buffered argument when instantiating a new
named-tuple cursor:
cursor = cnx.cursor(named_tuple=True, buffered=True)
Note
• Use the binary client/server protocol to send and receive data. To repeatedly execute the same
statement with different data for different executions, this is more efficient than using PREPARE and
EXECUTE. For information about the binary protocol, see C API Prepared Statement Interface.
In Connector/Python, there are two ways to create a cursor that enables execution of prepared statements
using the binary protocol. In both cases, the cursor() method of the connection object returns a
MySQLCursorPrepared object:
• The simpler syntax uses a prepared=True argument to the cursor() method. This syntax is
available as of Connector/Python 1.1.2.
import mysql.connector
cnx = mysql.connector.connect(database='employees')
cursor = cnx.cursor(prepared=True)
cnx = mysql.connector.connect(database='employees')
cursor = cnx.cursor(cursor_class=MySQLCursorPrepared)
• The first time you pass a statement to the cursor's execute() method, it prepares the statement. For
subsequent invocations of execute(), the preparation phase is skipped if the statement is the same.
• The execute() method takes an optional second argument containing a list of data values to associate
with parameter markers in the statement. If the list argument is present, there must be one value per
parameter marker.
Example:
cursor = cnx.cursor(prepared=True)
74
constants.ClientFlag Class
1. The %s within the statement is a parameter marker. Do not put quote marks around parameter markers.
2. For the first call to the execute() method, the cursor prepares the statement. If data is given in the
same call, it also executes the statement and you should fetch the data.
3. For subsequent execute() calls that pass the same SQL statement, the cursor skips the preparation
phase.
Prepared statements executed with MySQLCursorPrepared can use the format (%s) or qmark (?)
parameterization style. This differs from nonprepared statements executed with MySQLCursor, which can
use the format or pyformat parameterization style.
To use multiple prepared statements simultaneously, instantiate multiple cursors from the
MySQLCursorPrepared class.
The MySQL client/server protocol has an option to send prepared statement parameters via the
COM_STMT_SEND_LONG_DATA command. To use this from Connector/Python scripts, send the parameter
in question using the IOBase interface. Example:
from io import IOBase
...
cur = cnx.cursor(prepared=True)
cur.execute("SELECT (%s)", (io.BytesIO(bytes("A", "latin1")), ))
The following example shows how to print the name of the data type for each column in a result set.
from __future__ import print_function
import mysql.connector
75
constants.SQLMode Class
cursor.execute(
"SELECT DATE(NOW()) AS `c1`, TIME(NOW()) AS `c2`, "
"NOW() AS `c3`, 'a string' AS `c4`, 42 AS `c5`")
rows = cursor.fetchall()
cursor.close()
cnx.close()
• RefreshOption.GRANT
• RefreshOption.LOG
• RefreshOption.TABLES
• RefreshOption.HOSTS
• RefreshOption.STATUS
76
Errors and Exceptions
• RefreshOption.THREADS
• RefreshOption.REPLICA
On a replica replication server, reset the source server information and restart the replica, like RESET
SLAVE. This constant was named "RefreshOption.SLAVE" before v8.0.23.
The exception classes defined in this module mostly follow the Python Database API Specification v2.0
(PEP 249). For some MySQL client or server errors it is not always clear which exception to raise. It is
good to discuss whether an error should be reclassified by opening a bug report.
MySQL Server errors are mapped with Python exception based on their SQLSTATE value (see Server
Error Message Reference). The following table shows the SQLSTATE classes and the exception
Connector/Python raises. It is, however, possible to redefine which exception is raised for each server
error. The default exception is DatabaseError.
77
errorcode Module
For more information about MySQL errors, see Error Messages and Common Problems.
try:
cnx = mysql.connector.connect(user='scott', database='employees')
cursor = cnx.cursor()
cursor.execute("SELECT * FORM employees") # Syntax error in query
cnx.close()
except mysql.connector.Error as err:
print("Something went wrong: {}".format(err))
Initializing the exception supports a few optional arguments, namely msg, errno, values and sqlstate.
All of them are optional and default to None. errors.Error is internally used by Connector/Python to
raise MySQL client and server errors and should not be used by your application to raise exceptions.
The following examples show the result when using no arguments or a combination of the arguments:
78
errors.DataError Exception
'Unknown error'
>>> str(Error(errno=2006))
'2006: MySQL server has gone away'
The example which uses error number 1146 is used when Connector/Python receives an error packet from
the MySQL Server. The information is parsed and passed to the Error exception as shown.
Each exception subclassing from Error can be initialized using the previously mentioned arguments.
Additionally, each instance has the attributes errno, msg and sqlstate which can be used in your code.
The following example shows how to handle errors when dropping a table which does not exist (when the
DROP TABLE statement does not include a IF EXISTS clause):
import mysql.connector
from mysql.connector import errorcode
Prior to Connector/Python 1.1.1, the original message passed to errors.Error() is not saved in such
a way that it could be retrieved. Instead, the Error.msg attribute was formatted with the error number
and SQLSTATE value. As of 1.1.1, only the original message is saved in the Error.msg attribute. The
formatted value together with the error number and SQLSTATE value can be obtained by printing or
getting the string representation of the error object. Example:
try:
conn = mysql.connector.connect(database = "baddb")
except mysql.connector.Error as e:
print "Error code:", e.errno # error number
print "SQLSTATE value:", e.sqlstate # SQLSTATE value
print "Error message:", e.msg # error message
print "Error:", e # errno, sqlstate, msg values
s = str(e)
print "Error:", s # errno, sqlstate, msg values
79
errors.DatabaseError Exception
80
errors.ProgrammingError Exception
Consider using either more strict Server SQL Modes or the raise_on_warnings connection argument to
make Connector/Python raise errors when your queries produce warnings.
This method defines custom exceptions for MySQL server errors and returns current customizations.
If error is a MySQL Server error number, you must also pass the exception class. The error
argument can be a dictionary, in which case the key is the server error number, and value the class of the
exception to be raised.
# Or using a dictionary:
mysql.connector.custom_error_exception({
1028: mysql.connector.DatabaseError,
1029: mysql.connector.OperationalError,
})
81
82
Chapter 11 Connector/Python C Extension API Reference
Table of Contents
11.1 _mysql_connector Module ......................................................................................................... 84
11.2 _mysql_connector.MySQL() Class ............................................................................................. 84
11.3 _mysql_connector.MySQL.affected_rows() Method ..................................................................... 84
11.4 _mysql_connector.MySQL.autocommit() Method ........................................................................ 85
11.5 _mysql_connector.MySQL.buffered() Method ............................................................................. 85
11.6 _mysql_connector.MySQL.change_user() Method ...................................................................... 85
11.7 _mysql_connector.MySQL.character_set_name() Method ........................................................... 85
11.8 _mysql_connector.MySQL.close() Method .................................................................................. 85
11.9 _mysql_connector.MySQL.commit() Method ............................................................................... 86
11.10 _mysql_connector.MySQL.connect() Method ............................................................................ 86
11.11 _mysql_connector.MySQL.connected() Method ........................................................................ 86
11.12 _mysql_connector.MySQL.consume_result() Method ................................................................ 86
11.13 _mysql_connector.MySQL.convert_to_mysql() Method .............................................................. 86
11.14 _mysql_connector.MySQL.escape_string() Method ................................................................... 87
11.15 _mysql_connector.MySQL.fetch_fields() Method ....................................................................... 87
11.16 _mysql_connector.MySQL.fetch_row() Method ......................................................................... 87
11.17 _mysql_connector.MySQL.field_count() Method ........................................................................ 87
11.18 _mysql_connector.MySQL.free_result() Method ........................................................................ 88
11.19 _mysql_connector.MySQL.get_character_set_info() Method ...................................................... 88
11.20 _mysql_connector.MySQL.get_client_info() Method .................................................................. 88
11.21 _mysql_connector.MySQL.get_client_version() Method ............................................................. 88
11.22 _mysql_connector.MySQL.get_host_info() Method .................................................................... 88
11.23 _mysql_connector.MySQL.get_proto_info() Method ................................................................... 88
11.24 _mysql_connector.MySQL.get_server_info() Method ................................................................. 88
11.25 _mysql_connector.MySQL.get_server_version() Method ............................................................ 89
11.26 _mysql_connector.MySQL.get_ssl_cipher() Method .................................................................. 89
11.27 _mysql_connector.MySQL.hex_string() Method ........................................................................ 89
11.28 _mysql_connector.MySQL.insert_id() Method ........................................................................... 89
11.29 _mysql_connector.MySQL.more_results() Method ..................................................................... 89
11.30 _mysql_connector.MySQL.next_result() Method ........................................................................ 89
11.31 _mysql_connector.MySQL.num_fields() Method ........................................................................ 89
11.32 _mysql_connector.MySQL.num_rows() Method ........................................................................ 90
11.33 _mysql_connector.MySQL.ping() Method ................................................................................. 90
11.34 _mysql_connector.MySQL.query() Method ............................................................................... 90
11.35 _mysql_connector.MySQL.raw() Method .................................................................................. 90
11.36 _mysql_connector.MySQL.refresh() Method ............................................................................. 91
11.37 _mysql_connector.MySQL.reset_connection() Method .............................................................. 91
11.38 _mysql_connector.MySQL.rollback() Method ............................................................................ 91
11.39 _mysql_connector.MySQL.select_db() Method .......................................................................... 91
11.40 _mysql_connector.MySQL.set_character_set() Method ............................................................. 91
11.41 _mysql_connector.MySQL.shutdown() Method .......................................................................... 91
11.42 _mysql_connector.MySQL.stat() Method .................................................................................. 92
11.43 _mysql_connector.MySQL.thread_id() Method .......................................................................... 92
11.44 _mysql_connector.MySQL.use_unicode() Method ..................................................................... 92
11.45 _mysql_connector.MySQL.warning_count() Method .................................................................. 92
11.46 _mysql_connector.MySQL.have_result_set Property ................................................................. 92
83
_mysql_connector Module
This chapter contains the public API reference for the Connector/Python C Extension, also known as the
_mysql_connector Python module.
The _mysql_connector C Extension module can be used directly without any other code of Connector/
Python. One reason to use this module directly is for performance reasons.
Note
Note
The C Extension is not part of the pure Python installation. It is an optional module
that must be installed using a binary distribution of Connector/Python that includes
it, or compiled using a source distribution. See Chapter 4, Connector/Python
Installation.
The MySQL class is used to open and manage a connection to a MySQL server (referred to elsewhere in
this reference as “the MySQL instance”). It is also used to send commands and SQL statements and read
results.
The MySQL class wraps most functions found in the MySQL C Client API and adds some additional
convenient functionality.
import _mysql_connector
ccnx = _mysql_connector.MySQL()
ccnx.connect(user='scott', password='password',
host='127.0.0.1', database='employees')
ccnx.close()
Permitted arguments for the MySQL class are auth_plugin, buffered, charset_name,
connection_timeout, raw, use_unicode. Those arguments correspond to the arguments of the same
names for MySQLConnection.connect() as described at Section 7.1, “Connector/Python Connection
Arguments”, except that charset_name corresponds to charset.
84
_mysql_connector.MySQL.autocommit() Method
Returns the number of rows changed, inserted, or deleted by the most recent UPDATE, INSERT, or
DELETE statement.
With no argument, returns True or False to indicate whether the MySQL instance buffers (stores) the
results.
For the setter syntax, raises a TypeError exception if the value is not True or False.
Changes the user and sets a new default database. Permitted arguments are user, password, and
database.
Returns the name of the default character set for the current MySQL session.
Some MySQL character sets have no equivalent names in Python. When this is the case, a name usable
by Python is returned. For example, the 'utf8mb4' MySQL character set name is returned as 'utf8'.
85
_mysql_connector.MySQL.commit() Method
ccnx = _mysql_connector.MySQL()
ccnx.connect(user='scott', password='password',
host='127.0.0.1', database='employees')
ccnx.close()
connect() supports the following arguments: host, user, password, database, port, unix_socket,
client_flags, ssl_ca, ssl_cert, ssl_key, ssl_verify_cert, compress. See Section 7.1,
“Connector/Python Connection Arguments”.
If ccnx is already connected, connect() discards any pending result set and closes the connection
before reopening it.
Consumes the stored result set, if there is one, for this MySQL instance, by fetching all rows. If the
statement that was executed returned multiple result sets, this method loops over and consumes all of
them.
Converts a Python object to a MySQL value based on the Python type of the object. The converted object
is escaped and quoted.
86
_mysql_connector.MySQL.escape_string() Method
Uses the mysql_escape_string() C API function to create an SQL string that you can use in an SQL
statement.
Raises a TypeError exception if the value does not have a Unicode, bytes, or (for Python 2) string
type. Raises a MySQLError exception if the string could not be escaped.
Fetches column information for the active result set. Returns a list of tuples, one tuple per column
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server.
ccnx.query('SELECT CURRENT_USER(), 1 + 3, NOW()')
field_info = ccnx.fetch_fields()
for fi in field_info:
print(fi)
ccnx.consume_result()
Fetches the next row from the active result set. The row is returned as a tuple that contains the values
converted to Python objects, unless raw was set.
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.
87
_mysql_connector.MySQL.free_result() Method
Frees the stored result set, if there is one, for this MySQL instance. If the statement that was executed
returned multiple result sets, this method loops over and consumes all of them.
Returns information about the default character set for the current MySQL session. The returned dictionary
has the keys number, name, csname, comment, dir, mbminlen, and mbmaxlen.
88
_mysql_connector.MySQL.get_server_version() Method
Returns the SSL cipher used for the current session, or None if SSL is not in use.
Encodes a value in hexadecimal format and wraps it within X''. For example, "ham" becomes
X'68616D'.
Returns the AUTO_INCREMENT value generated by the most recent executed statement, or 0 if there is no
such value.
Returns True or False to indicate whether any more result sets exist.
Initiates the next result set for a statement string that produced multiple result sets.
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server.
89
_mysql_connector.MySQL.num_rows() Method
Syntax:
count = ccnx.num_fields()
Returns True or False to indicate whether the connection to the MySQL server is working.
Executes an SQL statement. The permitted arguments are statement, buffered, raw, and
raw_as_string.
ccnx.query('DROP TABLE IF EXISTS t')
ccnx.query('CREATE TABLE t (i INT NOT NULL AUTO_INCREMENT PRIMARY KEY)')
ccnx.query('INSERT INTO t (i) VALUES (NULL),(NULL),(NULL)')
ccnx.query('SELECT LAST_INSERT_ID()')
row = ccnx.fetch_row()
print('LAST_INSERT_ID(): ', row)
ccnx.consume_result()
buffered and raw, if not provided, take their values from the MySQL instance. raw_as_string is a
special argument for Python v2 and returns str instead of bytearray (compatible with Connector/Python
v1.x).
To check whether the query returns rows, check the have_result_set property of the MySQL instance.
query() returns True if the query executes, and raises an exception otherwise. It raises a TypeError
exception if any argument has an invalid type, and a MySQLInterfaceError exception for any MySQL
error returned by the MySQL server.
90
_mysql_connector.MySQL.refresh() Method
With no argument, returns True or False to indicate whether the MySQL instance return the rows as is
(without conversion to Python objects).
Flushes or resets the tables and caches indicated by the argument. The only argument currently permitted
is an integer.
Resets the user variables and session variables for a connection session.
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server.
Sets the default character set for the current session. The only argument permitted is a string that contains
the character set name.
91
_mysql_connector.MySQL.stat() Method
Syntax:
ccnx.shutdown(flags)
Shuts down 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. Raises a MySQLErrorInterface
exception if an error is retured by the MySQL server.
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 instance returns nonbinary strings as Unicode.
Returns the number of errors, warnings, and notes produced by the previous SQL statement.
After execution of the query() method, this property indicates whether the query returns rows.
92
_mysql_connector.MySQL.thread_id() method, 92
Index _mysql_connector.MySQL.use_unicode() method, 92
_mysql_connector.MySQL.warning_count() method, 92
Symbols
_mysql_connector module, 84 C
_mysql_connector.MySQL() class, 84
class
_mysql_connector.MySQL.affected_rows() method, 84
connection.MySQLConnection, 46
_mysql_connector.MySQL.autocommit() method, 85
constants.CharacterSet, 76
_mysql_connector.MySQL.buffered() method, 85
constants.ClientFlag, 75
_mysql_connector.MySQL.change_user() method, 85
constants.FieldType, 75
_mysql_connector.MySQL.character_set_name()
constants.RefreshOption, 76
method, 85
constants.SQLMode, 76
_mysql_connector.MySQL.close() method, 85
cursor.MySQLCursor, 62
_mysql_connector.MySQL.commit() method, 86
cursor.MySQLCursorBuffered, 71
_mysql_connector.MySQL.connect() method, 86
cursor.MySQLCursorBufferedDict, 73
_mysql_connector.MySQL.connected() method, 86
cursor.MySQLCursorBufferedNamedTuple, 73
_mysql_connector.MySQL.consume_result() method, 86
cursor.MySQLCursorBufferedRaw, 72
_mysql_connector.MySQL.convert_to_mysql() method,
cursor.MySQLCursorDict, 72
86
cursor.MySQLCursorNamedTuple, 73
_mysql_connector.MySQL.escape_string() method, 87
cursor.MySQLCursorPrepared, 74
_mysql_connector.MySQL.fetch_fields() method, 87
cursor.MySQLCursorRaw, 71
_mysql_connector.MySQL.fetch_row() method, 87
pooling.MySQLConnectionPool, 59
_mysql_connector.MySQL.field_count() method, 87
pooling.PooledMySQLConnection, 61
_mysql_connector.MySQL.free_result() method, 88
_mysql_connector.MySQL(), 84
_mysql_connector.MySQL.get_character_set_info()
COM_STMT_SEND_LONG_DATA
method, 88
prepared statements, 75
_mysql_connector.MySQL.get_client_info() method, 88
connection.MySQLConnection class, 46
_mysql_connector.MySQL.get_client_version() method,
connection.MySQLConnection() constructor, 46
88
Connector/Python, 1
_mysql_connector.MySQL.get_host_info() method, 88
constants.CharacterSet class, 76
_mysql_connector.MySQL.get_proto_info() method, 88
constants.ClientFlag class, 75
_mysql_connector.MySQL.get_server_info() method, 88
constants.FieldType class, 75
_mysql_connector.MySQL.get_server_version() method,
constants.RefreshOption class, 76
89
constants.SQLMode class, 76
_mysql_connector.MySQL.get_ssl_cipher() method, 89
constructor
_mysql_connector.MySQL.have_result_set property, 92
connection.MySQLConnection(), 46
_mysql_connector.MySQL.hex_string() method, 89
cursor.MySQLCursor, 63
_mysql_connector.MySQL.insert_id() method, 89
pooling.MySQLConnectionPool, 59
_mysql_connector.MySQL.more_results() method, 89
pooling.PooledMySQLConnection, 61
_mysql_connector.MySQL.next_result() method, 89
cursor.mysqlcursor
_mysql_connector.MySQL.num_fields() method, 89
Subclasses, 71
_mysql_connector.MySQL.num_rows() method, 90
cursor.MySQLCursor class, 62
_mysql_connector.MySQL.ping() method, 90
cursor.MySQLCursor constructor, 63
_mysql_connector.MySQL.query() method, 90
cursor.MySQLCursorBuffered class, 71
_mysql_connector.MySQL.raw() method, 90
cursor.MySQLCursorBufferedDict class, 73
_mysql_connector.MySQL.refresh() method, 91
cursor.MySQLCursorBufferedNamedTuple class, 73
_mysql_connector.MySQL.reset_connection() method,
cursor.MySQLCursorBufferedRaw class, 72
91
cursor.MySQLCursorDict class, 72
_mysql_connector.MySQL.rollback() method, 91
cursor.MySQLCursorNamedTuple class, 73
_mysql_connector.MySQL.select_db() method, 91
cursor.MySQLCursorPrepared class, 74
_mysql_connector.MySQL.set_character_set() method,
cursor.MySQLCursorRaw class, 71
91
_mysql_connector.MySQL.shutdown() method, 91
_mysql_connector.MySQL.stat() method, 92
93
D MySQLConnection.commit(), 47
MySQLConnection.config(), 47
DYLD_LIBRARY_PATH environment variable, 33
MySQLConnection.connect(), 48
MySQLConnection.cursor(), 48
E MySQLConnection.disconnect(), 52
environment variable MySQLConnection.get_row(), 52
DYLD_LIBRARY_PATH, 33 MySQLConnection.get_rows(), 52
errorcode module, 78 MySQLConnection.get_server_info(), 52
errors.custom_error_exception() function, 81 MySQLConnection.get_server_version(), 52
errors.DatabaseError exception, 80 MySQLConnection.isset_client_flag(), 53
errors.DataError exception, 79 MySQLConnection.is_connected(), 52
errors.Error exception, 78 MySQLConnection.ping(), 53
errors.IntegrityError exception, 80 MySQLConnection.reconnect(), 53
errors.InterfaceError exception, 80 MySQLConnection.reset_session(), 53
errors.InternalError exception, 80 MySQLConnection.rollback(), 54
errors.NotSupportedError exception, 80 MySQLConnection.set_charset_collation(), 54
errors.OperationalError exception, 80 MySQLConnection.set_client_flags(), 54
errors.PoolError exception, 80 MySQLConnection.shutdown(), 55
errors.ProgrammingError exception, 81 MySQLConnection.start_transaction(), 55
errors.Warning exception, 81 MySQLConnectionPool.add_connection(), 60
exception MySQLConnectionPool.get_connection(), 60
errors.DatabaseError, 80 MySQLConnectionPool.set_config(), 60
errors.DataError, 79 MySQLCursor.add_attribute(), 63
errors.Error, 78 MySQLCursor.callproc(), 64
errors.IntegrityError, 80 MySQLCursor.clear_attributes(), 64
errors.InterfaceError, 80 MySQLCursor.close(), 65
errors.InternalError, 80 MySQLCursor.execute(), 65
errors.NotSupportedError, 80 MySQLCursor.executemany(), 66
errors.OperationalError, 80 MySQLCursor.fetchall(), 67
errors.PoolError, 80 MySQLCursor.fetchmany(), 67
errors.ProgrammingError, 81 MySQLCursor.fetchone(), 67
errors.Warning, 81 MySQLCursor.fetchwarnings(), 68
MySQLCursor.get_attributes(), 64
F MySQLCursor.stored_results(), 68
function PooledMySQLConnection.close(), 61
errors.custom_error_exception(), 81 PooledMySQLConnection.config(), 62
_mysql_connector.MySQL.affected_rows(), 84
M _mysql_connector.MySQL.autocommit(), 85
method _mysql_connector.MySQL.buffered(), 85
mysql.connector.connect(), 45 _mysql_connector.MySQL.change_user(), 85
MySQLConnection.close(), 47 _mysql_connector.MySQL.character_set_name(), 85
MySQLConnection.cmd_change_user(), 49 _mysql_connector.MySQL.close(), 85
MySQLConnection.cmd_debug(), 49 _mysql_connector.MySQL.commit(), 86
MySQLConnection.cmd_init_db(), 49 _mysql_connector.MySQL.connect(), 86
MySQLConnection.cmd_ping(), 49 _mysql_connector.MySQL.connected(), 86
MySQLConnection.cmd_process_info(), 49 _mysql_connector.MySQL.consume_result(), 86
MySQLConnection.cmd_process_kill(), 50 _mysql_connector.MySQL.convert_to_mysql(), 86
MySQLConnection.cmd_query(), 50 _mysql_connector.MySQL.escape_string(), 87
MySQLConnection.cmd_query_iter(), 50 _mysql_connector.MySQL.fetch_fields(), 87
MySQLConnection.cmd_quit(), 51 _mysql_connector.MySQL.fetch_row(), 87
MySQLConnection.cmd_refresh(), 51 _mysql_connector.MySQL.field_count(), 87
MySQLConnection.cmd_reset_connection(), 51 _mysql_connector.MySQL.free_result(), 88
MySQLConnection.cmd_shutdown(), 51 _mysql_connector.MySQL.get_character_set_info(),
MySQLConnection.cmd_statistics(), 51 88
94
_mysql_connector.MySQL.get_client_info(), 88 MySQLConnection.collation property, 56
_mysql_connector.MySQL.get_client_version(), 88 MySQLConnection.commit() method, 47
_mysql_connector.MySQL.get_host_info(), 88 MySQLConnection.config() method, 47
_mysql_connector.MySQL.get_proto_info(), 88 MySQLConnection.connect() method, 47
_mysql_connector.MySQL.get_server_info(), 88 MySQLConnection.connection_id property, 56
_mysql_connector.MySQL.get_server_version(), 89 MySQLConnection.cursor() method, 48
_mysql_connector.MySQL.get_ssl_cipher(), 89 MySQLConnection.database property, 56
_mysql_connector.MySQL.hex_string(), 89 MySQLConnection.disconnect() method, 52
_mysql_connector.MySQL.insert_id(), 89 MySQLConnection.get_row() method, 52
_mysql_connector.MySQL.more_results(), 89 MySQLConnection.get_rows() method, 52
_mysql_connector.MySQL.next_result(), 89 MySQLConnection.get_server_info() method, 52
_mysql_connector.MySQL.num_fields(), 90 MySQLConnection.get_server_version() method, 52
_mysql_connector.MySQL.num_rows(), 90 MySQLConnection.get_warnings property, 57
_mysql_connector.MySQL.ping(), 90 MySQLConnection.in_transaction property, 57
_mysql_connector.MySQL.query(), 90 MySQLConnection.isset_client_flag() method, 53
_mysql_connector.MySQL.raw(), 90 MySQLConnection.is_connected() method, 52
_mysql_connector.MySQL.refresh(), 91 MySQLConnection.ping() method, 53
_mysql_connector.MySQL.reset_connection(), 91 MySQLConnection.raise_on_warnings property, 57
_mysql_connector.MySQL.rollback(), 91 MySQLConnection.reconnect() method, 53
_mysql_connector.MySQL.select_db(), 91 MySQLConnection.reset_session() method, 53
_mysql_connector.MySQL.set_character_set(), 91 MySQLConnection.rollback() method, 54
_mysql_connector.MySQL.shutdown(), 92 MySQLConnection.server_host property, 58
_mysql_connector.MySQL.stat(), 92 MySQLConnection.server_port property, 58
_mysql_connector.MySQL.thread_id(), 92 MySQLConnection.set_charset_collation() method, 54
_mysql_connector.MySQL.use_unicode(), 92 MySQLConnection.set_client_flags() method, 54
_mysql_connector.MySQL.warning_count(), 92 MySQLConnection.shutdown() method, 55
module MySQLConnection.sql_mode property, 58
errorcode, 78 MySQLConnection.start_transaction() method, 55
mysql.connector, 45 MySQLConnection.time_zone property, 58
_mysql_connector, 84 MySQLConnection.unix_socket property, 59
mysql.connector module, 45 MySQLConnection.unread_results property, 56
mysql.connector.apilevel property, 46 MySQLConnection.user property, 59
mysql.connector.connect() method, 45 MySQLConnectionPool.add_connection() method, 59
mysql.connector.paramstyle property, 46 MySQLConnectionPool.get_connection() method, 60
mysql.connector.threadsafety property, 46 MySQLConnectionPool.pool_name property, 60
mysql.connector.__version_info__ property, 46 MySQLConnectionPool.set_config() method, 60
mysql.connector.__version__ property, 46 MySQLCursor.add_attribute() method, 63
MySQLConnection.autocommit property, 55 MySQLCursor.callproc() method, 64
MySQLConnection.can_consume_results property, 56 MySQLCursor.clear_attributes() method, 64
MySQLConnection.charset property, 56 MySQLCursor.close() method, 65
MySQLConnection.close() method, 47 MySQLCursor.column_names property, 68
MySQLConnection.cmd_change_user() method, 49 MySQLCursor.description property, 69
MySQLConnection.cmd_debug() method, 49 MySQLCursor.execute() method, 65
MySQLConnection.cmd_init_db() method, 49 MySQLCursor.executemany() method, 66
MySQLConnection.cmd_ping() method, 49 MySQLCursor.fetchall() method, 67
MySQLConnection.cmd_process_info() method, 49 MySQLCursor.fetchmany() method, 67
MySQLConnection.cmd_process_kill() method, 50 MySQLCursor.fetchone() method, 67
MySQLConnection.cmd_query() method, 50 MySQLCursor.fetchwarnings() method, 68
MySQLConnection.cmd_query_iter() method, 50 MySQLCursor.get_attributes() method, 64
MySQLConnection.cmd_quit() method, 51 MySQLCursor.lastrowid property, 70
MySQLConnection.cmd_refresh() method, 51 MySQLCursor.rowcount property, 70
MySQLConnection.cmd_reset_connection() method, 51 MySQLCursor.statement property, 70
MySQLConnection.cmd_shutdown() method, 51 MySQLCursor.stored_results() method, 68
MySQLConnection.cmd_statistics() method, 51 MySQLCursor.with_rows property, 70
95
P
PEP 249, 1
PooledMySQLConnection.close() method, 61
PooledMySQLConnection.config() method, 62
PooledMySQLConnection.pool_name property, 62
pooling.MySQLConnectionPool class, 59
pooling.MySQLConnectionPool constructor, 59
pooling.PooledMySQLConnection class, 61
pooling.PooledMySQLConnection constructor, 61
prepared statements, 74
property
mysql.connector.apilevel, 46
mysql.connector.paramstyle, 46
mysql.connector.threadsafety, 46
mysql.connector.__version_info__, 46
mysql.connector.__version__, 46
MySQLConnection.autocommit, 55
MySQLConnection.can_consume_results, 56
MySQLConnection.charset, 56
MySQLConnection.collation, 56
MySQLConnection.connection_id, 56
MySQLConnection.database, 56
MySQLConnection.get_warnings, 57
MySQLConnection.in_transaction, 57
MySQLConnection.raise_on_warnings, 57
MySQLConnection.server_host, 58
MySQLConnection.server_port, 58
MySQLConnection.sql_mode, 58
MySQLConnection.time_zone, 58
MySQLConnection.unix_socket, 59
MySQLConnection.unread_results, 56
MySQLConnection.user, 59
MySQLConnectionPool.pool_name, 60
MySQLCursor.column_names, 68
MySQLCursor.description, 69
MySQLCursor.lastrowid, 70
MySQLCursor.rowcount, 70
MySQLCursor.statement, 70
MySQLCursor.with_rows, 70
PooledMySQLConnection.pool_name, 62
_mysql_connector.MySQL.have_result_set, 92
Python, 1
Python Database API Specification v2.0 (PEP 249), 1
S
Subclasses cursor.mysqlcursor, 71
96