Files
sqlalchemy/doc/build/dialects/sqlite.rst
T
Mike Bayer d355a3be3b - Documented SQLite DATE/TIME/DATETIME types.
[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
2011-03-27 20:34:39 -04:00

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