From b890e37adaea63be240f930bf6b7b5d4c9ab1395 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 18 Oct 2005 13:59:58 +0000 Subject: [PATCH] Added get_table_list() to ado_mssql backend git-svn-id: http://code.djangoproject.com/svn/django/trunk@935 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/db/backends/ado_mssql.py | 3 +++ 1 file changed, 3 insertions(+) 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