transactions.txt 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. =====================
  2. Database transactions
  3. =====================
  4. .. module:: django.db.transaction
  5. Django gives you a few ways to control how database transactions are managed.
  6. Managing database transactions
  7. ==============================
  8. Django's default transaction behavior
  9. -------------------------------------
  10. Django's default behavior is to run in autocommit mode. Each query is
  11. immediately committed to the database. :ref:`See below for details
  12. <autocommit-details>`.
  13. Django uses transactions or savepoints automatically to guarantee the
  14. integrity of ORM operations that require multiple queries, especially
  15. :ref:`delete() <topics-db-queries-delete>` and :ref:`update()
  16. <topics-db-queries-update>` queries.
  17. .. versionchanged:: 1.6
  18. Previous version of Django featured :ref:`a more complicated default
  19. behavior <transactions-upgrading-from-1.5>`.
  20. .. _tying-transactions-to-http-requests:
  21. Tying transactions to HTTP requests
  22. -----------------------------------
  23. A common way to handle transactions on the web is to wrap each request in a
  24. transaction. Set :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>` to
  25. ``True`` in the configuration of each database for which you want to enable
  26. this behavior.
  27. It works like this. When a request starts, Django starts a transaction. If the
  28. response is produced without problems, Django commits the transaction. If the
  29. view function produces an exception, Django rolls back the transaction.
  30. Middleware always runs outside of this transaction.
  31. You may perfom partial commits and rollbacks in your view code, typically with
  32. the :func:`atomic` context manager. However, at the end of the view, either
  33. all the changes will be committed, or none of them.
  34. To disable this behavior for a specific view, you must set the
  35. ``transactions_per_request`` attribute of the view function itself to
  36. ``False``, like this::
  37. def my_view(request):
  38. do_stuff()
  39. my_view.transactions_per_request = False
  40. .. warning::
  41. While the simplicity of this transaction model is appealing, it also makes it
  42. inefficient when traffic increases. Opening a transaction for every view has
  43. some overhead. The impact on performance depends on the query patterns of your
  44. application and on how well your database handles locking.
  45. .. admonition:: Per-request transactions and streaming responses
  46. When a view returns a :class:`~django.http.StreamingHttpResponse`, reading
  47. the contents of the response will often execute code to generate the
  48. content. Since the view has already returned, such code runs outside of
  49. the transaction.
  50. Generally speaking, it isn't advisable to write to the database while
  51. generating a streaming response, since there's no sensible way to handle
  52. errors after starting to send the response.
  53. In practice, this feature simply wraps every view function in the :func:`atomic`
  54. decorator described below.
  55. Note that only the execution of your view in enclosed in the transactions.
  56. Middleware run outside of the transaction, and so does the rendering of
  57. template responses.
  58. .. versionchanged:: 1.6
  59. Django used to provide this feature via ``TransactionMiddleware``, which is
  60. now deprecated.
  61. Controlling transactions explicitly
  62. -----------------------------------
  63. .. versionadded:: 1.6
  64. Django provides a single API to control database transactions.
  65. .. function:: atomic(using=None, savepoint=True)
  66. This function creates an atomic block for writes to the database.
  67. (Atomicity is the defining property of database transactions.)
  68. When the block completes successfully, the changes are committed to the
  69. database. When it raises an exception, the changes are rolled back.
  70. ``atomic`` can be nested. In this case, when an inner block completes
  71. successfully, its effects can still be rolled back if an exception is
  72. raised in the outer block at a later point.
  73. ``atomic`` takes a ``using`` argument which should be the name of a
  74. database. If this argument isn't provided, Django uses the ``"default"``
  75. database.
  76. ``atomic`` is usable both as a `decorator`_::
  77. from django.db import transaction
  78. @transaction.atomic
  79. def viewfunc(request):
  80. # This code executes inside a transaction.
  81. do_stuff()
  82. and as a `context manager`_::
  83. from django.db import transaction
  84. def viewfunc(request):
  85. # This code executes in autocommit mode (Django's default).
  86. do_stuff()
  87. with transaction.atomic():
  88. # This code executes inside a transaction.
  89. do_more_stuff()
  90. .. _decorator: http://docs.python.org/glossary.html#term-decorator
  91. .. _context manager: http://docs.python.org/glossary.html#term-context-manager
  92. Wrapping ``atomic`` in a try/except block allows for natural handling of
  93. integrity errors::
  94. from django.db import IntegrityError, transaction
  95. @transaction.atomic
  96. def viewfunc(request):
  97. do_stuff()
  98. try:
  99. with transaction.atomic():
  100. do_stuff_that_could_fail()
  101. except IntegrityError:
  102. handle_exception()
  103. do_more_stuff()
  104. In this example, even if ``do_stuff_that_could_fail()`` causes a database
  105. error by breaking an integrity constraint, you can execute queries in
  106. ``do_more_stuff()``, and the changes from ``do_stuff()`` are still there.
  107. In order to guarantee atomicity, ``atomic`` disables some APIs. Attempting
  108. to commit, roll back, or change the autocommit state of the database
  109. connection within an ``atomic`` block will raise an exception.
  110. ``atomic`` can only be used in autocommit mode. It will raise an exception
  111. if autocommit is turned off.
  112. Under the hood, Django's transaction management code:
  113. - opens a transaction when entering the outermost ``atomic`` block;
  114. - creates a savepoint when entering an inner ``atomic`` block;
  115. - releases or rolls back to the savepoint when exiting an inner block;
  116. - commits or rolls back the transaction when exiting the outermost block.
  117. You can disable the creation of savepoints for inner blocks by setting the
  118. ``savepoint`` argument to ``False``. If an exception occurs, Django will
  119. perform the rollback when exiting the first parent block with a savepoint
  120. if there is one, and the outermost block otherwise. Atomicity is still
  121. guaranteed by the outer transaction. This option should only be used if
  122. the overhead of savepoints is noticeable. It has the drawback of breaking
  123. the error handling described above.
  124. .. admonition:: Performance considerations
  125. Open transactions have a performance cost for your database server. To
  126. minimize this overhead, keep your transactions as short as possible. This
  127. is especially important of you're using :func:`atomic` in long-running
  128. processes, outside of Django's request / response cycle.
  129. Autocommit
  130. ==========
  131. .. _autocommit-details:
  132. Why Django uses autocommit
  133. --------------------------
  134. In the SQL standards, each SQL query starts a transaction, unless one is
  135. already in progress. Such transactions must then be committed or rolled back.
  136. This isn't always convenient for application developers. To alleviate this
  137. problem, most databases provide an autocommit mode. When autocommit is turned
  138. on, each SQL query is wrapped in its own transaction. In other words, the
  139. transaction is not only automatically started, but also automatically
  140. committed.
  141. :pep:`249`, the Python Database API Specification v2.0, requires autocommit to
  142. be initially turned off. Django overrides this default and turns autocommit
  143. on.
  144. To avoid this, you can :ref:`deactivate the transaction management
  145. <deactivate-transaction-management>`, but it isn't recommended.
  146. .. versionchanged:: 1.6
  147. Before Django 1.6, autocommit was turned off, and it was emulated by
  148. forcing a commit after write operations in the ORM.
  149. .. warning::
  150. If you're using the database API directly — for instance, you're running
  151. SQL queries with ``cursor.execute()`` — be aware that autocommit is on,
  152. and consider wrapping your operations in a transaction, with
  153. :func:`atomic`, to ensure consistency.
  154. .. _deactivate-transaction-management:
  155. Deactivating transaction management
  156. -----------------------------------
  157. You can totally disable Django's transaction management for a given database
  158. by setting :setting:`AUTOCOMMIT <DATABASE-AUTOCOMMIT>` to ``False`` in its
  159. configuration. If you do this, Django won't enable autocommit, and won't
  160. perform any commits. You'll get the regular behavior of the underlying
  161. database library.
  162. This requires you to commit explicitly every transaction, even those started
  163. by Django or by third-party libraries. Thus, this is best used in situations
  164. where you want to run your own transaction-controlling middleware or do
  165. something really strange.
  166. .. versionchanged:: 1.6
  167. This used to be controlled by the ``TRANSACTIONS_MANAGED`` setting.
  168. Low-level APIs
  169. ==============
  170. .. warning::
  171. Always prefer :func:`atomic` if possible at all. It accounts for the
  172. idiosyncrasies of each database and prevents invalid operations.
  173. The low level APIs are only useful if you're implementing your own
  174. transaction management.
  175. .. _managing-autocommit:
  176. Autocommit
  177. ----------
  178. .. versionadded:: 1.6
  179. Django provides a straightforward API to manage the autocommit state of each
  180. database connection, if you need to.
  181. .. function:: get_autocommit(using=None)
  182. .. function:: set_autocommit(autocommit, using=None)
  183. These functions take a ``using`` argument which should be the name of a
  184. database. If it isn't provided, Django uses the ``"default"`` database.
  185. Autocommit is initially turned on. If you turn it off, it's your
  186. responsibility to restore it.
  187. Once you turn autocommit off, you get the default behavior of your database
  188. adapter, and Django won't help you. Although that behavior is specified in
  189. :pep:`249`, implementations of adapters aren't always consistent with one
  190. another. Review the documentation of the adapter you're using carefully.
  191. You must ensure that no transaction is active, usually by issuing a
  192. :func:`commit` or a :func:`rollback`, before turning autocommit back on.
  193. :func:`atomic` requires autocommit to be turned on; it will raise an exception
  194. if autocommit is off. Django will also refuse to turn autocommit off when an
  195. :func:`atomic` block is active, because that would break atomicity.
  196. Transactions
  197. ------------
  198. A transaction is an atomic set of database queries. Even if your program
  199. crashes, the database guarantees that either all the changes will be applied,
  200. or none of them.
  201. Django doesn't provide an API to start a transaction. The expected way to
  202. start a transaction is to disable autocommit with :func:`set_autocommit`.
  203. Once you're in a transaction, you can choose either to apply the changes
  204. you've performed until this point with :func:`commit`, or to cancel them with
  205. :func:`rollback`.
  206. .. function:: commit(using=None)
  207. .. function:: rollback(using=None)
  208. These functions take a ``using`` argument which should be the name of a
  209. database. If it isn't provided, Django uses the ``"default"`` database.
  210. Django will refuse to commit or to rollback when an :func:`atomic` block is
  211. active, because that would break atomicity.
  212. .. _topics-db-transactions-savepoints:
  213. Savepoints
  214. ----------
  215. A savepoint is a marker within a transaction that enables you to roll back
  216. part of a transaction, rather than the full transaction. Savepoints are
  217. available with the SQLite (≥ 3.6.8), PostgreSQL, Oracle and MySQL (when using
  218. the InnoDB storage engine) backends. Other backends provide the savepoint
  219. functions, but they're empty operations -- they don't actually do anything.
  220. Savepoints aren't especially useful if you are using autocommit, the default
  221. behavior of Django. However, once you open a transaction with :func:`atomic`,
  222. you build up a series of database operations awaiting a commit or rollback. If
  223. you issue a rollback, the entire transaction is rolled back. Savepoints
  224. provide the ability to perform a fine-grained rollback, rather than the full
  225. rollback that would be performed by ``transaction.rollback()``.
  226. .. versionchanged:: 1.6
  227. When the :func:`atomic` decorator is nested, it creates a savepoint to allow
  228. partial commit or rollback. You're strongly encouraged to use :func:`atomic`
  229. rather than the functions described below, but they're still part of the
  230. public API, and there's no plan to deprecate them.
  231. Each of these functions takes a ``using`` argument which should be the name of
  232. a database for which the behavior applies. If no ``using`` argument is
  233. provided then the ``"default"`` database is used.
  234. Savepoints are controlled by three functions in :mod:`django.db.transaction`:
  235. .. function:: savepoint(using=None)
  236. Creates a new savepoint. This marks a point in the transaction that
  237. is known to be in a "good" state.
  238. Returns the savepoint ID (``sid``).
  239. .. function:: savepoint_commit(sid, using=None)
  240. Releases savepoint ``sid``. The changes performed since the savepoint was
  241. created become part of the transaction.
  242. .. function:: savepoint_rollback(sid, using=None)
  243. Rolls back the transaction to savepoint ``sid``.
  244. These functions do nothing if savepoints aren't supported or if the database
  245. is in autocommit mode.
  246. In addition, there's a utility function:
  247. .. function:: clean_savepoints(using=None)
  248. Resets the counter used to generate unique savepoint IDs.
  249. The following example demonstrates the use of savepoints::
  250. from django.db import transaction
  251. # open a transaction
  252. @transaction.atomic
  253. def viewfunc(request):
  254. a.save()
  255. # transaction now contains a.save()
  256. sid = transaction.savepoint()
  257. b.save()
  258. # transaction now contains a.save() and b.save()
  259. if want_to_keep_b:
  260. transaction.savepoint_commit(sid)
  261. # open transaction still contains a.save() and b.save()
  262. else:
  263. transaction.savepoint_rollback(sid)
  264. # open transaction now contains only a.save()
  265. Database-specific notes
  266. =======================
  267. Savepoints in SQLite
  268. --------------------
  269. While SQLite ≥ 3.6.8 supports savepoints, a flaw in the design of the
  270. :mod:`sqlite3` makes them hardly usable.
  271. When autocommit is enabled, savepoints don't make sense. When it's disabled,
  272. :mod:`sqlite3` commits implicitly before savepoint-related statement. (It
  273. commits before any statement other than ``SELECT``, ``INSERT``, ``UPDATE``,
  274. ``DELETE`` and ``REPLACE``.)
  275. As a consequence, savepoints are only usable inside a transaction ie. inside
  276. an :func:`atomic` block.
  277. Transactions in MySQL
  278. ---------------------
  279. If you're using MySQL, your tables may or may not support transactions; it
  280. depends on your MySQL version and the table types you're using. (By
  281. "table types," we mean something like "InnoDB" or "MyISAM".) MySQL transaction
  282. peculiarities are outside the scope of this article, but the MySQL site has
  283. `information on MySQL transactions`_.
  284. If your MySQL setup does *not* support transactions, then Django will function
  285. in autocommit mode: Statements will be executed and committed as soon as
  286. they're called. If your MySQL setup *does* support transactions, Django will
  287. handle transactions as explained in this document.
  288. .. _information on MySQL transactions: http://dev.mysql.com/doc/refman/5.0/en/sql-syntax-transactions.html
  289. Handling exceptions within PostgreSQL transactions
  290. --------------------------------------------------
  291. When a call to a PostgreSQL cursor raises an exception (typically
  292. ``IntegrityError``), all subsequent SQL in the same transaction will fail with
  293. the error "current transaction is aborted, queries ignored until end of
  294. transaction block". Whilst simple use of ``save()`` is unlikely to raise an
  295. exception in PostgreSQL, there are more advanced usage patterns which
  296. might, such as saving objects with unique fields, saving using the
  297. force_insert/force_update flag, or invoking custom SQL.
  298. There are several ways to recover from this sort of error.
  299. Transaction rollback
  300. ~~~~~~~~~~~~~~~~~~~~
  301. The first option is to roll back the entire transaction. For example::
  302. a.save() # Succeeds, but may be undone by transaction rollback
  303. try:
  304. b.save() # Could throw exception
  305. except IntegrityError:
  306. transaction.rollback()
  307. c.save() # Succeeds, but a.save() may have been undone
  308. Calling ``transaction.rollback()`` rolls back the entire transaction. Any
  309. uncommitted database operations will be lost. In this example, the changes
  310. made by ``a.save()`` would be lost, even though that operation raised no error
  311. itself.
  312. Savepoint rollback
  313. ~~~~~~~~~~~~~~~~~~
  314. You can use :ref:`savepoints <topics-db-transactions-savepoints>` to control
  315. the extent of a rollback. Before performing a database operation that could
  316. fail, you can set or update the savepoint; that way, if the operation fails,
  317. you can roll back the single offending operation, rather than the entire
  318. transaction. For example::
  319. a.save() # Succeeds, and never undone by savepoint rollback
  320. try:
  321. sid = transaction.savepoint()
  322. b.save() # Could throw exception
  323. transaction.savepoint_commit(sid)
  324. except IntegrityError:
  325. transaction.savepoint_rollback(sid)
  326. c.save() # Succeeds, and a.save() is never undone
  327. In this example, ``a.save()`` will not be undone in the case where
  328. ``b.save()`` raises an exception.
  329. .. _transactions-upgrading-from-1.5:
  330. Changes from Django 1.5 and earlier
  331. ===================================
  332. The features described below were deprecated in Django 1.6 and will be removed
  333. in Django 1.8. They're documented in order to ease the migration to the new
  334. transaction management APIs.
  335. Legacy APIs
  336. -----------
  337. The following functions, defined in ``django.db.transaction``, provided a way
  338. to control transactions on a per-function or per-code-block basis. They could
  339. be used as decorators or as context managers, and they accepted a ``using``
  340. argument, exactly like :func:`atomic`.
  341. .. function:: autocommit
  342. Enable Django's default autocommit behavior.
  343. Transactions will be committed as soon as you call ``model.save()``,
  344. ``model.delete()``, or any other function that writes to the database.
  345. .. function:: commit_on_success
  346. Use a single transaction for all the work done in a function.
  347. If the function returns successfully, then Django will commit all work done
  348. within the function at that point. If the function raises an exception,
  349. though, Django will roll back the transaction.
  350. .. function:: commit_manually
  351. Tells Django you'll be managing the transaction on your own.
  352. Whether you are writing or simply reading from the database, you must
  353. ``commit()`` or ``rollback()`` explicitly or Django will raise a
  354. :exc:`TransactionManagementError` exception. This is required when reading
  355. from the database because ``SELECT`` statements may call functions which
  356. modify tables, and thus it is impossible to know if any data has been
  357. modified.
  358. .. _transaction-states:
  359. Transaction states
  360. ------------------
  361. The three functions described above relied on a concept called "transaction
  362. states". This mechanisme was deprecated in Django 1.6, but it's still
  363. available until Django 1.8..
  364. At any time, each database connection is in one of these two states:
  365. - **auto mode**: autocommit is enabled;
  366. - **managed mode**: autocommit is disabled.
  367. Django starts in auto mode. ``TransactionMiddleware``,
  368. :func:`commit_on_success` and :func:`commit_manually` activate managed mode;
  369. :func:`autocommit` activates auto mode.
  370. Internally, Django keeps a stack of states. Activations and deactivations must
  371. be balanced.
  372. For example, ``commit_on_success`` switches to managed mode when entering the
  373. block of code it controls; when exiting the block, it commits or rollbacks,
  374. and switches back to auto mode.
  375. So :func:`commit_on_success` really has two effects: it changes the
  376. transaction state and it defines an transaction block. Nesting will give the
  377. expected results in terms of transaction state, but not in terms of
  378. transaction semantics. Most often, the inner block will commit, breaking the
  379. atomicity of the outer block.
  380. :func:`autocommit` and :func:`commit_manually` have similar limitations.
  381. API changes
  382. -----------
  383. Transaction middleware
  384. ~~~~~~~~~~~~~~~~~~~~~~
  385. In Django 1.6, ``TransactionMiddleware`` is deprecated and replaced
  386. :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>`. While the general
  387. behavior is the same, there are a few differences.
  388. With the transaction middleware, it was still possible to switch to autocommit
  389. or to commit explicitly in a view. Since :func:`atomic` guarantees atomicity,
  390. this isn't allowed any longer.
  391. To avoid wrapping a particular view in a transaction, instead of::
  392. @transaction.autocommit
  393. def my_view(request):
  394. do_stuff()
  395. you must now use this pattern::
  396. def my_view(request):
  397. do_stuff()
  398. my_view.transactions_per_request = False
  399. The transaction middleware applied not only to view functions, but also to
  400. middleware modules that come after it. For instance, if you used the session
  401. middleware after the transaction middleware, session creation was part of the
  402. transaction. :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>` only
  403. applies to the view itself.
  404. Managing transactions
  405. ~~~~~~~~~~~~~~~~~~~~~
  406. Starting with Django 1.6, :func:`atomic` is the only supported API for
  407. defining a transaction. Unlike the deprecated APIs, it's nestable and always
  408. guarantees atomicity.
  409. In most cases, it will be a drop-in replacement for :func:`commit_on_success`.
  410. During the deprecation period, it's possible to use :func:`atomic` within
  411. :func:`autocommit`, :func:`commit_on_success` or :func:`commit_manually`.
  412. However, the reverse is forbidden, because nesting the old decorators /
  413. context managers breaks atomicity.
  414. If you enter :func:`atomic` while you're in managed mode, it will trigger a
  415. commit to start from a clean slate.
  416. Managing autocommit
  417. ~~~~~~~~~~~~~~~~~~~
  418. Django 1.6 introduces an explicit :ref:`API for mananging autocommit
  419. <managing-autocommit>`.
  420. To disable autocommit temporarily, instead of::
  421. with transaction.commit_manually():
  422. # do stuff
  423. you should now use::
  424. transaction.set_autocommit(False)
  425. try:
  426. # do stuff
  427. finally:
  428. transaction.set_autocommit(True)
  429. To enable autocommit temporarily, instead of::
  430. with transaction.autocommit():
  431. # do stuff
  432. you should now use::
  433. transaction.set_autocommit(True)
  434. try:
  435. # do stuff
  436. finally:
  437. transaction.set_autocommit(False)
  438. Disabling transaction management
  439. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  440. Instead of setting ``TRANSACTIONS_MANAGED = True``, set the ``AUTOCOMMIT`` key
  441. to ``False`` in the configuration of each database, as explained in :ref
  442. :`deactivate-transaction-management`.
  443. Backwards incompatibilities
  444. ---------------------------
  445. Since version 1.6, Django uses database-level autocommit in auto mode.
  446. Previously, it implemented application-level autocommit by triggering a commit
  447. after each ORM write.
  448. As a consequence, each database query (for instance, an ORM read) started a
  449. transaction that lasted until the next ORM write. Such "automatic
  450. transactions" no longer exist in Django 1.6.
  451. There are four known scenarios where this is backwards-incompatible.
  452. Note that managed mode isn't affected at all. This section assumes auto mode.
  453. See the :ref:`description of modes <transaction-states>` above.
  454. Sequences of custom SQL queries
  455. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  456. If you're executing several :ref:`custom SQL queries <executing-custom-sql>`
  457. in a row, each one now runs in its own transaction, instead of sharing the
  458. same "automatic transaction". If you need to enforce atomicity, you must wrap
  459. the sequence of queries in :func:`commit_on_success`.
  460. To check for this problem, look for calls to ``cursor.execute()``. They're
  461. usually followed by a call to ``transaction.commit_unless_managed``, which
  462. isn't necessary any more and should be removed.
  463. Select for update
  464. ~~~~~~~~~~~~~~~~~
  465. If you were relying on "automatic transactions" to provide locking between
  466. :meth:`~django.db.models.query.QuerySet.select_for_update` and a subsequent
  467. write operation — an extremely fragile design, but nonetheless possible — you
  468. must wrap the relevant code in :func:`atomic`.
  469. Using a high isolation level
  470. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  471. If you were using the "repeatable read" isolation level or higher, and if you
  472. relied on "automatic transactions" to guarantee consistency between successive
  473. reads, the new behavior might be backwards-incompatible. To enforce
  474. consistency, you must wrap such sequences in :func:`atomic`.
  475. MySQL defaults to "repeatable read" and SQLite to "serializable"; they may be
  476. affected by this problem.
  477. At the "read committed" isolation level or lower, "automatic transactions"
  478. have no effect on the semantics of any sequence of ORM operations.
  479. PostgreSQL and Oracle default to "read committed" and aren't affected, unless
  480. you changed the isolation level.
  481. Using unsupported database features
  482. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  483. With triggers, views, or functions, it's possible to make ORM reads result in
  484. database modifications. Django 1.5 and earlier doesn't deal with this case and
  485. it's theoretically possible to observe a different behavior after upgrading to
  486. Django 1.6 or later. In doubt, use :func:`atomic` to enforce integrity.