Browse Source

db.exe zweiter Versuch

gc-server6 1 year ago
parent
commit
3abc9e4199
3 changed files with 4 additions and 5 deletions
  1. 1 1
      database/db_create.py
  2. 3 4
      database/db_schema.py
  3. BIN
      dist/db.exe

+ 1 - 1
database/db_create.py

@@ -120,7 +120,7 @@ def create(config_file="dbtools/OPTIMA.json"):
 
     df = pd.read_csv(f"{base_dir}/{cfg.csv_file}", sep=";", encoding="latin-1")
     config = df[df["target"].notnull()]
-    print(config.head())
+    # print(config.head())
 
     source_db = database_inspect(cfg.source_dsn)
     source_tables = source_db.get_tables()

+ 3 - 4
database/db_schema.py

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

BIN
dist/db.exe