Release Notes for MariaDB Connector/Python 1.0.5
This page is part of MariaDB's Documentation.
The parent of this page is: Release Notes for MariaDB Connector/Python 1.0
Topics on this page:
Overview
MariaDB Connector/Python is the interface between Python applications and MariaDB Server. MariaDB Connector/Python enables development of Python applications. It is compliant with Python DB API 2.0 (PEP-249). It is written in C and uses MariaDB Connector/C.
MariaDB Connector/Python 1.0.5 was released on 2020-11-25. This release is of General Availability (GA) maturity.
Notable Changes
When establishing a new database connection the
connectmethod now also supportsNonevalues instead of strings only. (CONPY-127)Added connection attribute
server_version_infoand (for compatibility)get_server_version()method. Both return a tuple, describing the version number of connected server in following format:(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)(CONPY-128)The internal parser now supports the full MariaDB comment syntax. (CONPY-133)
