Release Notes for MariaDB Connector/Python 1.1.3
This page is part of MariaDB's Documentation.
The parent of this page is: Release Notes for MariaDB Connector/Python 1.1
Topics on this page:
Overview
MariaDB Connector/Python is a native MariaDB connector for building Python applications on MariaDB. It is compliant with Python DB API 2.0 (PEP-249). It is written in Python and C and uses MariaDB Connector/C.
MariaDB Connector/Python 1.1.3 was released on 2022-07-07. This release is of General Availability (GA) maturity.
Issues Fixed
When
Cursor.execute()
is called and one or more of the parameter values contain multi-byte characters, Connector/Python incorrectly substitutes the parameter values in the query string, which causes the query to fail. (CONPY-209)The
mariadb.constants.ERR
module does not contain all error codes. (CONPY-211)When the
Cursor.buffered
attribute is set toFalse
, theCursor.execute()
method still buffers the result set. (CONPY-212)