Ticket #3333: 3333-db-api.diff

File 3333-db-api.diff, 1.1 KB (added by ramiro <rm0 _at_ gmx.net>, 17 years ago)
  • docs/db-api.txt

    old new  
    66database-abstraction API that lets you create, retrieve, update and delete
    77objects. This document explains that API.
    88
    9 .. _`data models`: http://www.djangoproject.com/documentation/model_api/
     9.. _`data models`: ../model_api/
    1010
    1111Throughout this reference, we'll refer to the following models, which comprise
    1212a weblog application::
     
    8585unless you explicitly specify ``primary_key=True`` on a field. See the
    8686`AutoField documentation`_.)
    8787
    88 .. _AutoField documentation: http://www.djangoproject.com/documentation/model_api/#autofield
     88.. _AutoField documentation: ../model_api/#autofield
    8989
    9090Explicitly specifying auto-primary-key values
    9191~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     
    17771777programming languages or database frameworks; there's nothing Django-specific
    17781778about your database.
    17791779
    1780 .. _Executing custom SQL: http://www.djangoproject.com/documentation/model_api/#executing-custom-sql
     1780.. _Executing custom SQL: ../model_api/#executing-custom-sql
Back to Top