PageRenderTime 23ms CodeModel.GetById 16ms app.highlight 4ms RepoModel.GetById 1ms app.codeStats 0ms

/SQLAlchemy-0.7.8/doc/_sources/dialects/sqlite.txt

#
Plain Text | 31 lines | 20 code | 11 blank | 0 comment | 0 complexity | 515d039e79c0be6e484eee86537ce6ac MD5 | raw file
 1.. _sqlite_toplevel:
 2
 3SQLite
 4======
 5
 6.. automodule:: sqlalchemy.dialects.sqlite.base
 7
 8SQLite Data Types
 9------------------------
10
11As with all SQLAlchemy dialects, all UPPERCASE types that are known to be
12valid with SQLite are importable from the top level dialect, whether
13they originate from :mod:`sqlalchemy.types` or from the local dialect::
14
15    from sqlalchemy.dialects.sqlite import \
16                BLOB, BOOLEAN, CHAR, DATE, DATETIME, DECIMAL, FLOAT, \
17                INTEGER, NUMERIC, SMALLINT, TEXT, TIME, TIMESTAMP, \
18                VARCHAR
19
20.. module:: sqlalchemy.dialects.sqlite
21
22.. autoclass:: DATETIME
23
24.. autoclass:: DATE
25
26.. autoclass:: TIME
27
28Pysqlite
29--------
30
31.. automodule:: sqlalchemy.dialects.sqlite.pysqlite