Ticket #18223: ticket18223.diff

File ticket18223.diff, 855 bytes (added by mateusgondim, 12 years ago)

Hi, I replaced the wrong sentence with the right one.

  • docs/ref/databases.txt

    diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
    index 2dea337..88b978f 100644
    a b will do some additional queries to set these parameters.  
    5656Transaction handling
    5757---------------------
    5858
    59 :doc:`By default </topics/db/transactions>`, Django starts a transaction when a
    60 database connection is first used and commits the result at the end of the
    61 request/response handling. The PostgreSQL backends normally operate the same
    62 as any other Django backend in this respect.
     59:doc:`By default </topics/db/transactions>`, Django runs an open transaction which
     60it commits automatically when any built-in, data-altering model function is called.
     61The PostgreSQL backends normally operate the same as any other Django backend in
     62this respect.
    6363
    6464.. _postgresql-autocommit-mode:
Back to Top