Django

Code

Changeset 6163

Show
Ignore:
Timestamp:
09/13/07 23:55:09 (1 year ago)
Author:
adrian
Message:

Fixed #5341 -- Clarified docs/db-api.txt docs about params in extra(). Thanks, Paul Smith

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r6126 r6163  
    800800        Entry.objects.extra(where=['headline=%s'], params=['Lennon']) 
    801801 
     802    The combined number of placeholders in the list of strings for ``select`` 
     803    or ``where`` should equal the number of values in the ``params`` list. 
     804 
    802805QuerySet methods that do not return QuerySets 
    803806---------------------------------------------