diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-10-29 14:55:42 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-10-29 14:55:42 -0400 |
| commit | d2c1edfb15334a2fb6ada5b064563c144ac22ad7 (patch) | |
| tree | 96f8e7b51dd57d30740cbc017fa66e71ee229f5f /doc | |
| parent | e1d1d999c9a688f4c8dbbe885438c63d6ef494c6 (diff) | |
| download | sqlalchemy-d2c1edfb15334a2fb6ada5b064563c144ac22ad7.tar.gz | |
- added new backend for pysqlcipher, as we will probably get
requests for it soon.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_09.rst | 12 | ||||
| -rw-r--r-- | doc/build/dialects/sqlite.rst | 7 |
2 files changed, 18 insertions, 1 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index fe8dc0150..6909da357 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -14,6 +14,18 @@ :version: 0.9.9 .. change:: + :tags: feature, sqlite + :versions: 1.0.0 + + Added a new SQLite backend for the SQLCipher backend. This backend + provides for encrypted SQLite databases using the pysqlcipher Python + driver, which is very similar to the pysqlite driver. + + .. seealso:: + + :mod:`~sqlalchemy.dialects.sqlite.pysqlcipher` + + .. change:: :tags: bug, orm :tickets: 3232 :versions: 1.0.0 diff --git a/doc/build/dialects/sqlite.rst b/doc/build/dialects/sqlite.rst index 21fd4e3aa..a18b0ba7b 100644 --- a/doc/build/dialects/sqlite.rst +++ b/doc/build/dialects/sqlite.rst @@ -28,4 +28,9 @@ they originate from :mod:`sqlalchemy.types` or from the local dialect:: Pysqlite -------- -.. automodule:: sqlalchemy.dialects.sqlite.pysqlite
\ No newline at end of file +.. automodule:: sqlalchemy.dialects.sqlite.pysqlite + +Pysqlcipher +----------- + +.. automodule:: sqlalchemy.dialects.sqlite.pysqlcipher
\ No newline at end of file |
