Changeset 5466
- Timestamp:
- 06/11/07 19:31:55 (1 year ago)
- Files:
-
- django/trunk/docs/db-api.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/db-api.txt
r5458 r5466 599 599 c = p.hometown # Doesn't hit the database. 600 600 601 sv= Book.objects.get(id=4) # No select_related() in this example.601 b = Book.objects.get(id=4) # No select_related() in this example. 602 602 p = b.author # Hits the database. 603 603 c = p.hometown # Hits the database.
