Ticket #16233: 16233.diff

File 16233.diff, 642 bytes (added by Claude Paroz, 12 years ago)

Cross link to multiple databases topic

  • docs/topics/db/sql.txt

    diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt
    index 80038e5..658dfdf 100644
    a b is required. For example::  
    229229
    230230        return row
    231231
    232 If you are using more than one database you can use
    233 ``django.db.connections`` to obtain the connection (and cursor) for a
     232If you are using :doc:`more than one database </topics/db/multi-db>`, you can
     233use ``django.db.connections`` to obtain the connection (and cursor) for a
    234234specific database. ``django.db.connections`` is a dictionary-like
    235235object that allows you to retrieve a specific connection using its
    236236alias::
Back to Top