~ubuntu-branches/ubuntu/utopic/python-django/utopic

« back to all changes in this revision

Viewing changes to docs/topics/db/transactions.txt

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-08-02 10:44:02 UTC
  • mfrom: (1.1.17) (4.4.20 sid)
  • Revision ID: package-import@ubuntu.com-20120802104402-x26ethgm9s21la1y
* New upstream security and maintenance release. Closes: #683364
  Fixes: CVE-2012-3442 CVE-2012-3443 CVE-2012-3444
* Drop 01_disable_broken_test.diff and 04_hyphen-manpage.diff which
  have been merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
.. _transaction-management-functions:
58
58
 
 
59
.. note::
 
60
 
 
61
    The ``TransactionMiddleware`` only affects the database aliased
 
62
    as "default" within your :setting:`DATABASES` setting.  If you are using
 
63
    multiple databases and want transaction control over databases other than
 
64
    "default", you will need to write your own transaction middleware.
 
65
 
59
66
Controlling transaction management in views
60
67
===========================================
61
68