MariaDB Connector/Python 1.1.0 Alpha1 Release Notes

You are viewing an old version of this article. View the current version here.

The most recent Stable (GA) release of MariaDB Connector/Python is:
MariaDB Connector/Python 1.1.10

Download Release Notes Connector/Python Overview

Release date: 18 Aug 2021

This is an alpha release of the MariaDB Connector/Python and not intended for production use.

Do not use alpha releases in production!

For a description of this library see the MariaDB Connector/Python documentation.

MariaDB Connector/Python enables python programs to access MariaDB and MySQL databases, using an API which is compliant with the Python DB API 2.0 (PEP-249). It is written in C and uses MariaDB Connector/C client library for client server communication.

Notable changes

  • CONPY-97: All classes (including cursor and connection) are implemented in native Python. Instead of using the default cursor and connection classes, it is now possible to use own classes which are based on default classes.
  • The default behaviour for cursor result sets changed: instead of using unbuffered result sets buffered result sets are used (buffered= True).
  • Parser was partially reworked: Beside several fixes for different comment styles, the parser checks if binary or text protocol will be used.
  • Several new constants were added. CLIENT for capability checking, FIELD_FLAGS for use together with Cursor.descriptor, STATUS for checking current status of database server.
  • For reducing releasing and locking of the GIL, executemany() method was optimized and a new method was added to MariaDB Connector/C.
  • The minimum required version of Connector/C is now 3.2.4
  • Documentation was updated and extended.
  • New methods and attributes:
    • Connection class:
      • method begin() - starts a new transaction
      • method select_db() - changes the default database
      • method show_warnings() - Shows error, warning and note messages from last executed command
      • attribute client_capabilities - allows to check the capabilities of client library
      • attribute server_capabilities - allows to check the capabilities of connected database server
      • attribute server_status - allows to check the current server status
      • attribute open - returns True if the connection is alive, otherwise False
    • Cursor class
      • attribute buffered - default is now True.
      • paramcount - returns the number of parameters in a statement

Installation

MariaDB Connector/Python 1.1.0a1 can be obtained from central python repository:

$ pip3 install --pre mariadb

Changelog

For a list of changes made in this release, with links to detailed information on each push, see the changelog.

Do not use alpha releases in production!

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.