Added support for savepoints in SQLite.

Technically speaking they aren't usable yet.
This commit is contained in:
Aymeric Augustin 2013-03-04 15:57:04 +01:00
parent e264f67174
commit 4b31a6a9e6
4 changed files with 40 additions and 12 deletions

View file

@ -424,8 +424,7 @@ Savepoints
Both the Django ORM and MySQL (when using the InnoDB :ref:`storage engine
<mysql-storage-engines>`) support database :ref:`savepoints
<topics-db-transactions-savepoints>`, but this feature wasn't available in
Django until version 1.4 when such support was added.
<topics-db-transactions-savepoints>`.
If you use the MyISAM storage engine please be aware of the fact that you will
receive database-generated errors if you try to use the :ref:`savepoint-related