|
@@ -32,10 +32,7 @@ def convert_desc2(col):
|
|
|
|
|
|
# table_name = [x[2] for x in crsr.tables(tableType='VIEW')]
|
|
|
# open("views.txt", "w").write("\n".join(table_name))
|
|
|
-
|
|
|
-
|
|
|
-with open("tables.txt", "r") as rh:
|
|
|
- tables = rh.read().split("\n")
|
|
|
+tables = []
|
|
|
res = {}
|
|
|
|
|
|
|
|
@@ -104,6 +101,8 @@ def tables_create():
|
|
|
|
|
|
|
|
|
def schema():
|
|
|
+ with open("tables.txt", "r") as rh:
|
|
|
+ tables.extend(rh.read().split("\n"))
|
|
|
tables_cols()
|
|
|
pkeys()
|
|
|
# fkeys()
|