Changeset 6345
- Timestamp:
- 09/15/07 17:39:51 (1 year ago)
- Files:
-
- django/trunk/docs/settings.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/settings.txt
r6333 r6345 258 258 ``'sqlite3'``, ``'oracle'``, or ``'ado_mssql'``. 259 259 260 You can also use a database backend that doesn't ship with Django by 261 s etting ``DATABASE_ENGINE`` to a fully-qualified path (i.e.260 In the Django development version, you can use a database backend that doesn't 261 ship with Django by setting ``DATABASE_ENGINE`` to a fully-qualified path (i.e. 262 262 ``mypackage.backends.whatever``). Writing a whole new database backend from 263 scratch is left as an exercise to the reader. 263 scratch is left as an exercise to the reader; see the other backends for 264 examples. 264 265 265 266 DATABASE_HOST
