Ticket #2465: db-api.txt.diff

File db-api.txt.diff, 481 bytes (added by Adam Endicott <leftwing17@…>, 18 years ago)
  • db-api.txt

     
    578578    p = b.author         # Hits the database.
    579579    c = p.hometown       # Hits the database.
    580580
     581Note that ``select_related()`` will not follow foreign keys where
     582``null=True`` is set.
     583
    581584``extra(select=None, where=None, params=None, tables=None)``
    582585~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    583586
Back to Top