Changeset 7364
- Timestamp:
- 03/26/08 03:25:48 (3 months ago)
- Files:
-
- django/trunk/django/conf/global_settings.py (modified) (1 diff)
- django/trunk/django/db/backends/ado_mssql (deleted)
- django/trunk/docs/db-api.txt (modified) (1 diff)
- django/trunk/docs/settings.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/conf/global_settings.py
r7361 r7364 115 115 116 116 # Database connection info. 117 DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or ' ado_mssql'.117 DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 118 118 DATABASE_NAME = '' # Or path to database file if using sqlite3. 119 119 DATABASE_USER = '' # Not used with sqlite3. django/trunk/docs/db-api.txt
r7338 r7364 1307 1307 regular expression syntax is recommended. 1308 1308 1309 Regular expression matching is not supported on the ``ado_mssql`` backend.1310 It will raise a ``NotImplementedError`` at runtime.1311 1312 1309 iregex 1313 1310 ~~~~~~ django/trunk/docs/settings.txt
r7312 r7364 280 280 The database backend to use. The build-in database backends are 281 281 ``'postgresql_psycopg2'``, ``'postgresql'``, ``'mysql'``, ``'mysql_old'``, 282 ``'sqlite3'`` , ``'oracle'``, or ``'ado_mssql'``.282 ``'sqlite3'`` and ``'oracle'``. 283 283 284 284 In the Django development version, you can use a database backend that doesn't
