mirror of https://github.com/django/django.git
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:
parent
d5f32aa008
commit
b890e37ada
|
@ -105,6 +105,9 @@ def get_random_function_sql():
|
||||||
# TODO: This is a guess. Make sure this is correct.
|
# TODO: This is a guess. Make sure this is correct.
|
||||||
return "RANDOM()"
|
return "RANDOM()"
|
||||||
|
|
||||||
|
def get_table_list(cursor):
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
def get_relations(cursor, table_name):
|
def get_relations(cursor, table_name):
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue