PageRenderTime 84ms CodeModel.GetById 19ms RepoModel.GetById 8ms 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. SQLite
  3. ======
  4. .. automodule:: sqlalchemy.dialects.sqlite.base
  5. SQLite Data Types
  6. ------------------------
  7. As with all SQLAlchemy dialects, all UPPERCASE types that are known to be
  8. valid with SQLite are importable from the top level dialect, whether
  9. they originate from :mod:`sqlalchemy.types` or from the local dialect::
  10. from sqlalchemy.dialects.sqlite import \
  11. BLOB, BOOLEAN, CHAR, DATE, DATETIME, DECIMAL, FLOAT, \
  12. INTEGER, NUMERIC, SMALLINT, TEXT, TIME, TIMESTAMP, \
  13. VARCHAR
  14. .. module:: sqlalchemy.dialects.sqlite
  15. .. autoclass:: DATETIME
  16. .. autoclass:: DATE
  17. .. autoclass:: TIME
  18. Pysqlite
  19. --------
  20. .. automodule:: sqlalchemy.dialects.sqlite.pysqlite