summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-03-26 08:25:48 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-03-26 08:25:48 +0000
commitc30a050e41efa4c1194e78c33edad22e59d25ac4 (patch)
treea581b917b134eacca307c03fa72ffb4918bb1bf0 /docs
parent054c2e4af390c083a33c5a19093efd47def780de (diff)
Removed the ado_mssql database backend.
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
Diffstat (limited to 'docs')
-rw-r--r--docs/db-api.txt3
-rw-r--r--docs/settings.txt2
2 files changed, 1 insertions, 4 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt
index e9b5c05f6b..f8ed16988e 100644
--- a/docs/db-api.txt
+++ b/docs/db-api.txt
@@ -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
~~~~~~
diff --git a/docs/settings.txt b/docs/settings.txt
index fb2e04f1ea..5aee19102b 100644
--- a/docs/settings.txt
+++ b/docs/settings.txt
@@ -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.