Ticket #3333: 3333-db-api.diff
File 3333-db-api.diff, 1.1 KB (added by , 18 years ago) |
---|
-
docs/db-api.txt
old new 6 6 database-abstraction API that lets you create, retrieve, update and delete 7 7 objects. This document explains that API. 8 8 9 .. _`data models`: http://www.djangoproject.com/documentation/model_api/9 .. _`data models`: ../model_api/ 10 10 11 11 Throughout this reference, we'll refer to the following models, which comprise 12 12 a weblog application:: … … 85 85 unless you explicitly specify ``primary_key=True`` on a field. See the 86 86 `AutoField documentation`_.) 87 87 88 .. _AutoField documentation: http://www.djangoproject.com/documentation/model_api/#autofield88 .. _AutoField documentation: ../model_api/#autofield 89 89 90 90 Explicitly specifying auto-primary-key values 91 91 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ … … 1777 1777 programming languages or database frameworks; there's nothing Django-specific 1778 1778 about your database. 1779 1779 1780 .. _Executing custom SQL: http://www.djangoproject.com/documentation/model_api/#executing-custom-sql1780 .. _Executing custom SQL: ../model_api/#executing-custom-sql