Files
sqlalchemy/doc/build/dialects/sqlite.rst
T
Federico Caselli 23dbf572ce Format code in the rst docs file
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
2022-09-30 14:39:48 -04:00

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