config.toml 405 B

1234567891011121314151617181920212223242526272829
  1. [import]
  2. db_type = "mysql"
  3. ip = "127.0.0.1"
  4. port = 3357
  5. dbname = "test1"
  6. user = "root"
  7. password = "123456"
  8. [export]
  9. db_type = "mysql"
  10. ip = "127.0.0.1"
  11. port = 3357
  12. dbname = "gtong"
  13. user = "root"
  14. password = "123456"
  15. [import.cfg]
  16. delimiter = ","
  17. page_size = 100000
  18. filename_pattern = "^(.*)_[0-9]+\\.csv$"
  19. [export.cfg]
  20. base_file_path = "./GTool/"
  21. delimiter = ","
  22. max_file_size = 1024
  23. page_size = 100000