mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-05 15:23:48 -04:00
21 lines
604 B
ReStructuredText
21 lines
604 B
ReStructuredText
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
|
|
|
|
Pysqlite
|
|
--------
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.pysqlite |