mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-09 18:30:39 -04:00
23dbf572ce
Added script to format code in the rst documentation using black. This is also added to the lint tox job to ensure that the code in the docs is properly formatted. Change-Id: I799444f22da153484ca5f095d57755762348da40
72 lines
1.2 KiB
ReStructuredText
72 lines
1.2 KiB
ReStructuredText
.. _sqlite_toplevel:
|
|
|
|
SQLite
|
|
======
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.base
|
|
|
|
SQLite Data Types
|
|
-----------------
|
|
|
|
As with all SQLAlchemy dialects, all UPPERCASE types that are known to be
|
|
valid with SQLite are importable from the top level dialect, whether
|
|
they originate from :mod:`sqlalchemy.types` or from the local dialect::
|
|
|
|
from sqlalchemy.dialects.sqlite import (
|
|
BLOB,
|
|
BOOLEAN,
|
|
CHAR,
|
|
DATE,
|
|
DATETIME,
|
|
DECIMAL,
|
|
FLOAT,
|
|
INTEGER,
|
|
NUMERIC,
|
|
JSON,
|
|
SMALLINT,
|
|
TEXT,
|
|
TIME,
|
|
TIMESTAMP,
|
|
VARCHAR,
|
|
)
|
|
|
|
.. module:: sqlalchemy.dialects.sqlite
|
|
|
|
.. autoclass:: DATETIME
|
|
|
|
.. autoclass:: DATE
|
|
|
|
.. autoclass:: JSON
|
|
|
|
.. autoclass:: TIME
|
|
|
|
SQLite DML Constructs
|
|
-------------------------
|
|
|
|
.. autofunction:: sqlalchemy.dialects.sqlite.insert
|
|
|
|
.. autoclass:: sqlalchemy.dialects.sqlite.Insert
|
|
:members:
|
|
|
|
.. _pysqlite:
|
|
|
|
Pysqlite
|
|
--------
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.pysqlite
|
|
|
|
.. _aiosqlite:
|
|
|
|
Aiosqlite
|
|
---------
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.aiosqlite
|
|
|
|
|
|
.. _pysqlcipher:
|
|
|
|
Pysqlcipher
|
|
-----------
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.pysqlcipher
|