Changeset 1052
- Timestamp:
- 11/02/05 15:53:32 (3 years ago)
- Files:
-
- django/trunk/docs/legacy_databases.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/legacy_databases.txt
r534 r1052 17 17 You'll need to tell Django what your database connection parameters are, and 18 18 what the name of the database is. Do that by editing these settings in your 19 settings file:19 `settings file`_: 20 20 21 * ` `DATABASE_ENGINE``22 * ` `DATABASE_USER``23 * ` `DATABASE_PASSWORD``24 * ` `DATABASE_NAME``25 * ` `DATABASE_HOST``21 * `DATABASE_ENGINE`_ 22 * `DATABASE_USER`_ 23 * `DATABASE_PASSWORD`_ 24 * `DATABASE_NAME`_ 25 * `DATABASE_HOST`_ 26 26 27 For more information on these settings see `Tutorial 1`_. 28 29 .. _Tutorial 1: http://www.djangoproject.com/documentation/tutorial1/ 27 .. _settings file: http://www.djangoproject.com/documentation/settings/ 28 .. _DATABASE_ENGINE: http://www.djangoproject.com/documentation/settings/#database-engine 29 .. _DATABASE_USER: http://www.djangoproject.com/documentation/settings/#database-user 30 .. _DATABASE_PASSWORD: http://www.djangoproject.com/documentation/settings/#database-password 31 .. _DATABASE_NAME: http://www.djangoproject.com/documentation/settings/#database-name 32 .. _DATABASE_HOST: http://www.djangoproject.com/documentation/settings/#database-host 30 33 31 34 Auto-generate the models
