Ticket #16093: topics_db_sql_16093.diff

File topics_db_sql_16093.diff, 582 bytes (added by teraom, 13 years ago)
  • docs/topics/db/sql.txt

     
    228228If you are using more than one database you can use
    229229``django.db.connections`` to obtain the connection (and cursor) for a
    230230specific database. ``django.db.connections`` is a dictionary-like
    231 object that allows you to retrieve a specific connection using it's
     231object that allows you to retrieve a specific connection using its
    232232alias::
    233233
    234234    from django.db import connections
Back to Top