Ticket #9206: extra.diff
File extra.diff, 852 bytes (added by , 16 years ago) |
---|
-
docs/topics/db/transactions.txt
191 191 Savepoints are not implemented in PostgreSQL 7. If you experience an 192 192 IntegrityError when using PostgreSQL 7, you will need to rollback to the 193 193 start of the transaction. 194 195 Transactions and autocommit in PostgreSQL 196 ========================================= 197 198 .. versionadded:: 1.1 199 200 By default, Django starts a transaction when a database connection is first 201 used and regularly commits, as above. The PostgreSQL backends normally 202 operate the same as any other Django backend in this respect, but can 203 additionally support database-level :ref:`autocommit mode <ref-databases>` 204 with no constantly open transaction.