~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to doc/_sources/dialects/sqlite.txt

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2014-06-27 20:17:13 UTC
  • mfrom: (1.4.28)
  • Revision ID: package-import@ubuntu.com-20140627201713-g6p1kq8q1qenztrv
Tags: 0.9.6-1
* New upstream release
* Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
  patch (closes: #747852)
* python-fdb isn't in the Debian archive yet so default dialect for firebird://
  URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
  patch (closes: #752145)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _sqlite_toplevel:
2
 
 
3
 
SQLite
4
 
======
5
 
 
6
 
.. automodule:: sqlalchemy.dialects.sqlite.base
7
 
 
8
 
SQLite Data Types
9
 
------------------------
10
 
 
11
 
As with all SQLAlchemy dialects, all UPPERCASE types that are known to be
12
 
valid with SQLite are importable from the top level dialect, whether
13
 
they 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
 
 
28
 
Pysqlite
29
 
--------
30
 
 
31
 
.. automodule:: sqlalchemy.dialects.sqlite.pysqlite
 
 
b'\\ No newline at end of file'