MimerPy – Python database interface for Mimer SQL¶
MimerPy is an adapter for Mimer SQL in Python which implements the PEP 249 specification. It allows the user to connect to Mimer SQL through Python, gaining access of the exceptional performance and powerful features provided by a Mimer SQL database. MimerPy is implemented as a CPython wrapper of the Mimer SQL C API also known as Mimer API.
The following documentation covers the full interface of MimerPy, demonstrating how to install and use the product through simple guides and easy to read examples.
Contents:
- 1. Introduction
- 2. Installation guide
- 3. Getting started
- 4. The MimerPy module
- 5. Data types
- 5.1. BOOLEAN
- 5.2. INTEGER, INTEGER(p), BIGINT, and SMALLINT
- 5.3. DOUBLE PRECISION, FLOAT and REAL
- 5.4. FLOAT(p) and DECIMAL(p,s)
- 5.5. BINARY(n)
- 5.6. VARBINARY(n)
- 5.7. BLOB(n[K|M|G])
- 5.8. CLOB(n[K|M|G])
- 5.9. NCLOB(n)
- 5.10. CHAR(n)
- 5.11. VARCHAR(n)
- 5.12. NCHAR(n)
- 5.13. NVARCHAR(n)
- 5.14. DATE
- 5.15. TIME(s)
- 5.16. TIMESTAMP(s)
- 5.17. Universally Unique Identifier (UUID)
- 5.18. INTERVAL
- 5.19. NULL
- 6. Exceptions
- 7. User guide
- 8. Code examples
- 9. Release Notes
- 10. Legal Notice