Changeset 5467 for django/branches/boulder-oracle-sprint/docs/db-api.txt
- Timestamp:
- 06/12/07 12:56:00 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/boulder-oracle-sprint/docs/db-api.txt
r5463 r5467 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.
