Overview of MySQL Connector/Python
trunkMySQL Connector/Python is Oracle's official Python driver for MySQL databases. It provides two primary ways to interact with MySQL:
- Python Database API Specification v2.0 (PEP 249) compliant API: A standard interface for traditional SQL-based database access.
- X DevAPI implementation: A modern API designed for NoSQL-style document store operations and advanced MySQL features.
Use the PEP 249 API for standard relational database operations and the X DevAPI for document-based workflows.