~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/ref/databases.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.2.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-9lnsrh0i3mxozbt0
Tags: upstream-1.2.3
ImportĀ upstreamĀ versionĀ 1.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _ref-databases:
2
 
 
3
1
=========
4
2
Databases
5
3
=========
34
32
Transaction handling
35
33
---------------------
36
34
 
37
 
:ref:`By default <topics-db-transactions>`, Django starts a transaction when a
 
35
:doc:`By default </topics/db/transactions>`, Django starts a transaction when a
38
36
database connection is first used and commits the result at the end of the
39
37
request/response handling. The PostgreSQL backends normally operate the same
40
38
as any other Django backend in this respect.
247
245
Connecting to the database
248
246
--------------------------
249
247
 
250
 
Refer to the :ref:`settings documentation <ref-settings>`.
 
248
Refer to the :doc:`settings documentation </ref/settings>`.
251
249
 
252
250
Connection settings are used in this order:
253
251