Changeset 5120
- Timestamp:
- 04/28/07 09:23:41 (2 years ago)
- Files:
-
- django/trunk/docs/db-api.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/db-api.txt
r5064 r5120 113 113 b4.save() # Overrides the previous blog with ID=3! 114 114 115 See _`How Django knows to UPDATE vs. INSERT`, below, for the reason this115 See `How Django knows to UPDATE vs. INSERT`_, below, for the reason this 116 116 happens. 117 117 … … 715 715 something *other than* a ``QuerySet``. 716 716 717 These methods do not use a cache (see _`Caching and QuerySets`below). Rather,717 These methods do not use a cache (see `Caching and QuerySets`_ below). Rather, 718 718 they query the database each time they're called. 719 719 … … 907 907 ~~~~~ 908 908 909 Exact match. If the value provided for comparison is ``None``, it will 910 be interpreted as an SQL ``NULL`` (See isnull_ for more details). 909 Exact match. If the value provided for comparison is ``None``, it will 910 be interpreted as an SQL ``NULL`` (See isnull_ for more details). 911 911 912 912 Examples::
