Kaydet (Commit) 27f68f86 authored tarafından David Cramer's avatar David Cramer

Correct scoping of savepoint example

üst 57554442
...@@ -492,8 +492,8 @@ you can roll back the single offending operation, rather than the entire ...@@ -492,8 +492,8 @@ you can roll back the single offending operation, rather than the entire
transaction. For example:: transaction. For example::
a.save() # Succeeds, and never undone by savepoint rollback a.save() # Succeeds, and never undone by savepoint rollback
sid = transaction.savepoint()
try: try:
sid = transaction.savepoint()
b.save() # Could throw exception b.save() # Could throw exception
transaction.savepoint_commit(sid) transaction.savepoint_commit(sid)
except IntegrityError: except IntegrityError:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment