summaryrefslogtreecommitdiff
path: root/docs/db-api.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-26 16:26:48 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-26 16:26:48 +0000
commit63009faa141273726d124863053e3b5ab298c4f5 (patch)
treef4e44e516ca7bcac80272301773c1d7b85d9203e /docs/db-api.txt
parent786c750c40417a59449f1c5595fcc6b370ca7d4f (diff)
Added 'ne' lookup type to docs/db-api
git-svn-id: http://code.djangoproject.com/svn/django/trunk@317 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
-rw-r--r--docs/db-api.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt
index cb5ec4783f..548af52a71 100644
--- a/docs/db-api.txt
+++ b/docs/db-api.txt
@@ -66,6 +66,7 @@ The DB API supports the following lookup types:
gte Greater than or equal to.
lt Less than.
lte Less than or equal to.
+ ne Not equal to.
startswith Case-sensitive starts-with:
``polls.get_list(question_startswith="Would")``. (PostgreSQL
only. MySQL doesn't support case-sensitive LIKE statements;