mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-28 11:35:19 -04:00
9461fd8771
1. Section decorators to [one style](http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#sections):
without inset at both side and with same length as text.
2. Fix broken [reference](http://docs.sqlalchemy.org/en/latest/core/type_basics.html#generic-types).
3. Convert tabs to space in some small files.
4. Some python code snippets have python+sql syntax hint.
Change-Id: I39a7a41ef0b0591c6bf1e610748e2b5c19fc5379
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/361
(cherry picked from commit 42b6ef8ccd)
37 lines
808 B
ReStructuredText
37 lines
808 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
|
|
|
|
Pysqlcipher
|
|
-----------
|
|
|
|
.. automodule:: sqlalchemy.dialects.sqlite.pysqlcipher
|