blob: b125cc995f31eae16a40bade4a16cd978c5ba0af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def get_table_list(cursor):
raise NotImplementedError
def get_table_description(cursor, table_name):
raise NotImplementedError
def get_relations(cursor, table_name):
raise NotImplementedError
def get_indexes(cursor, table_name):
raise NotImplementedError
DATA_TYPES_REVERSE = {}
|