Added get_table_list() to ado_mssql backend

git-svn-id: http://code.djangoproject.com/svn/django/trunk@935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-18 13:59:58 +00:00
parent d5f32aa008
commit b890e37ada
1 changed files with 3 additions and 0 deletions

View File

@ -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