mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-11 19:29:52 -04:00
d355a3be3b
[ticket:2029] (also in 0.6.7) - add "currentmodule" directive to all the dialect type docs to ensure users import from the dialect package, not the "base" module
31 lines
733 B
ReStructuredText
31 lines
733 B
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, SMALLINT, TEXT, TIME, TIMESTAMP, \
|
|
VARCHAR
|
|
|
|
.. module:: sqlalchemy.dialects.sqlite
|
|
|
|
.. autoclass:: DATETIME
|
|
|
|
.. autoclass:: DATE
|
|
|
|
.. autoclass:: TIME
|
|
|
|
Pysqlite
|
|
--------
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.pysqlite |