summaryrefslogtreecommitdiff
path: root/doc/build/dialects/sqlite.rst
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-09-04 13:25:13 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-09-04 13:25:13 -0400
commit4e24d6cb01c58d9617d5e22e1068b2d164e4a3db (patch)
treec7d1bbb0fe8717df14da56ed5ad634606e371b3a /doc/build/dialects/sqlite.rst
parent6e83926657057c97239bef114e640f2b102be02c (diff)
downloadsqlalchemy-4e24d6cb01c58d9617d5e22e1068b2d164e4a3db.tar.gz
experiment with removing the API section and putting docstrings inline.
new outline section is provided with a new flow.
Diffstat (limited to 'doc/build/dialects/sqlite.rst')
-rw-r--r--doc/build/dialects/sqlite.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/build/dialects/sqlite.rst b/doc/build/dialects/sqlite.rst
new file mode 100644
index 000000000..a4e87e1b0
--- /dev/null
+++ b/doc/build/dialects/sqlite.rst
@@ -0,0 +1,21 @@
+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 \ No newline at end of file