Ticket #9003: queryset_docs_patch.diff

File queryset_docs_patch.diff, 910 bytes (added by Sean O'Connor, 16 years ago)

Patch for the QuerySet API Docs

  • docs/ref/models/querysets.txt

     
    866866.. admonition:: MySQL comparisons
    867867
    868868    In MySQL, whether or not ``exact`` comparisons are case-insensitive by
    869     default. This is controlled by the collation setting on the database
     869    default is controlled by the collation setting on the database
    870870    tables (this is a database setting, *not* a Django setting).  It is
    871     possible to configured you MySQL tables to use case-sensitive comparisons,
     871    possible to configure your MySQL tables to use case-sensitive comparisons,
    872872    however there are some trade-offs involved. For more information about
    873873    this, see the :ref:`collation section <mysql-collation>` in the
    874874    :ref:`databases <ref-databases>` documentation.
Back to Top