Skip to content

Commit

Permalink
Removed the ado_mssql database backend.
Browse files Browse the repository at this point in the history
It has not been maintained, contains bugs, and improved versions are available
externally(e.g. django-mssql and django-pyodbc at Google code).


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7364 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
mtredinnick committed Mar 26, 2008
1 parent 118279b commit a1c0d6a
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 157 deletions.
2 changes: 1 addition & 1 deletion django/conf/global_settings.py
Expand Up @@ -114,7 +114,7 @@
SEND_BROKEN_LINK_EMAILS = False

# Database connection info.
DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = '' # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3.
Expand Down
Empty file.
112 changes: 0 additions & 112 deletions django/db/backends/ado_mssql/base.py

This file was deleted.

2 changes: 0 additions & 2 deletions django/db/backends/ado_mssql/client.py

This file was deleted.

25 changes: 0 additions & 25 deletions django/db/backends/ado_mssql/creation.py

This file was deleted.

13 changes: 0 additions & 13 deletions django/db/backends/ado_mssql/introspection.py

This file was deleted.

3 changes: 0 additions & 3 deletions docs/db-api.txt
Expand Up @@ -1306,9 +1306,6 @@ SQL equivalents::
Using raw strings (e.g., ``r'foo'`` instead of ``'foo'``) for passing in the
regular expression syntax is recommended.

Regular expression matching is not supported on the ``ado_mssql`` backend.
It will raise a ``NotImplementedError`` at runtime.

iregex
~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion docs/settings.txt
Expand Up @@ -279,7 +279,7 @@ Default: ``''`` (Empty string)

The database backend to use. The build-in database backends are
``'postgresql_psycopg2'``, ``'postgresql'``, ``'mysql'``, ``'mysql_old'``,
``'sqlite3'``, ``'oracle'``, or ``'ado_mssql'``.
``'sqlite3'`` and ``'oracle'``.

In the Django development version, you can use a database backend that doesn't
ship with Django by setting ``DATABASE_ENGINE`` to a fully-qualified path (i.e.
Expand Down

0 comments on commit a1c0d6a

Please sign in to comment.