db.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. from pathlib import Path
  2. import typer
  3. import config
  4. import database
  5. app = typer.Typer()
  6. cfg = config.Config()
  7. @app.command()
  8. def create(config_file: str):
  9. config_file = cfg.system_dir + f"\\SQL\\config\\{config_file}.json"
  10. database.create(config_file)
  11. @app.command()
  12. def compare(config_file: str):
  13. config_file = cfg.system_dir + f"\\SQL\\config\\{config_file}.json"
  14. database.compare(config_file)
  15. @app.command()
  16. def run(config_file: str, increment: str = "1", max: int = 5):
  17. config_file = cfg.system_dir + f"\\SQL\\config\\{config_file}.json"
  18. database.run(config_file, increment == "1", max)
  19. @app.command()
  20. def run_folder(folder: str):
  21. folder_list = [
  22. Path(folder),
  23. Path(cfg.system_dir + "\\SQL\\exec\\" + folder),
  24. Path(cfg.system_dir + "\\Export\\SQL\\" + folder),
  25. ]
  26. for f in folder_list:
  27. if f.exists() and f.is_dir():
  28. folder = str(f.resolve())
  29. break
  30. print(folder)
  31. for sql_file in Path(folder).glob("*.sql"):
  32. print(f"call sqlexec2.bat {sql_file}")
  33. @app.command()
  34. def schema():
  35. database.schema()
  36. @app.command()
  37. def bcp_log():
  38. logs_dir = cfg.system_dir + "\\SQL\\temp"
  39. output_file = cfg.log_dir + "\\bcp.csv.log"
  40. database.bcp_log(logs_dir, output_file)
  41. if __name__ == "__main__":
  42. app()