diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-10-18 13:59:58 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-10-18 13:59:58 +0000 |
| commit | b890e37adaea63be240f930bf6b7b5d4c9ab1395 (patch) | |
| tree | 18b7ed5169734aa94a54c1e857ab6ee48f02ffed | |
| parent | d5f32aa008bf12affa134d8f1d872fbd35bf2b69 (diff) | |
Added get_table_list() to ado_mssql backend
git-svn-id: http://code.djangoproject.com/svn/django/trunk@935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/db/backends/ado_mssql.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/core/db/backends/ado_mssql.py b/django/core/db/backends/ado_mssql.py index 46116ccdad..944cf4b961 100644 --- a/django/core/db/backends/ado_mssql.py +++ b/django/core/db/backends/ado_mssql.py @@ -105,6 +105,9 @@ def get_random_function_sql(): # TODO: This is a guess. Make sure this is correct. return "RANDOM()" +def get_table_list(cursor): + raise NotImplementedError + def get_relations(cursor, table_name): raise NotImplementedError |
