MySQLdb is an interface to the popular MySQL database server for Python. The design goals are:
with Python database API version 2.0
Thread-safety
Thread-friendliness (threads will not block each other)
Compatibility with MySQL-3.23 and later
This package contains a backend for ghc-persistent
using the MySQL database server. Internally it uses the ghc-mysql-simple
and mysql
packages in order to access the database. This package supports only MySQL 5.1 and above. However, it has been tested only on MySQL 5.5. Only the InnoDB storage engine is officially supported.
This module understands the formats used by MySQL for its DATE, DATETIME, TIME, and TIMESTAMP data types. It can be used to parse these formats in order to create DateTime objects, and it can take a DateTime object and produce a string representing it in the MySQL format.
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).
This is a pure Go implementation of the MySQL API, compatible with golang's database/sql package.