summaryrefslogtreecommitdiff
path: root/docs/topics/db/transactions.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-06-30 10:25:51 -0400
committerTim Graham <timograham@gmail.com>2012-06-30 10:25:51 -0400
commit5d81ad1af14ee3127b53f923687ed5c4e00329ee (patch)
treeee6c9491b07933e2c68f1cf5106c97f767f10ff5 /docs/topics/db/transactions.txt
parentdb87016b1a92b790c4250a2b5c16ceadd737a00e (diff)
Fixed #17168 - Noted TransactionMiddleware only works with "default" database alias.
Thanks codeinthehole for the draft patch.
Diffstat (limited to 'docs/topics/db/transactions.txt')
-rw-r--r--docs/topics/db/transactions.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt
index 76b65b99e0..1f15949000 100644
--- a/docs/topics/db/transactions.txt
+++ b/docs/topics/db/transactions.txt
@@ -56,6 +56,13 @@ database cursor (which is mapped to its own database connection internally).
.. _transaction-management-functions:
+.. note::
+
+ The ``TransactionMiddleware`` only affects the database aliased
+ as "default" within your :setting:`DATABASES` setting. If you are using
+ multiple databases and want transaction control over databases other than
+ "default", you will need to write your own transaction middleware.
+
Controlling transaction management in views
===========================================