Commit 54987dd0 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

[1.2.X] Fixed #15243 -- More clearly document that the transaction functions...

[1.2.X] Fixed #15243 -- More clearly document that the transaction functions needs to be called with a using parameter to work with a non-default database.  Thanks to Jason Kotenko for the patch.  Backport of [15489].

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15490 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent b17f47ca
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -226,6 +226,8 @@ alias::

    from django.db import connections
    cursor = connections['my_db_alias'].cursor()
    # Your code here...
    transaction.commit_unless_managed(using='my_db_alias')

.. _transactions-and-raw-sql: