Ticket #9206: extra.diff

File extra.diff, 852 bytes (added by Richard Davies <richard.davies@…>, 15 years ago)

1.1 specific piece missed in r10655

  • docs/topics/db/transactions.txt

     
    191191Savepoints are not implemented in PostgreSQL 7. If you experience an
    192192IntegrityError when using PostgreSQL 7, you will need to rollback to the
    193193start of the transaction.
     194
     195Transactions and autocommit in PostgreSQL
     196=========================================
     197
     198.. versionadded:: 1.1
     199
     200By default, Django starts a transaction when a database connection is first
     201used and regularly commits, as above. The PostgreSQL backends normally
     202operate the same as any other Django backend in this respect, but can
     203additionally support database-level :ref:`autocommit mode <ref-databases>`
     204with no constantly open transaction.
Back to Top