diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-09-14 04:55:09 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-09-14 04:55:09 +0000 |
| commit | dc785104b8ffb33c57f5e17209743516c1bd88ae (patch) | |
| tree | f15dde60b60e3d229771b0d992862df11628a68a /docs | |
| parent | e336722fd1c396cf964e987432fbfcb7f4706379 (diff) | |
Fixed #5341 -- Clarified docs/db-api.txt docs about params in extra(). Thanks, Paul Smith
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6163 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/db-api.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt index 66faf4a793..038cdc8613 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -799,6 +799,9 @@ of the arguments is required, but you should use at least one of them. Entry.objects.extra(where=['headline=%s'], params=['Lennon']) + The combined number of placeholders in the list of strings for ``select`` + or ``where`` should equal the number of values in the ``params`` list. + QuerySet methods that do not return QuerySets --------------------------------------------- |
