通过命令 line/batch 在 SQL Workbench/j 中设置和保存连接配置文件

Setting up and saving connection profile in SQL Workbench/j from command line/batch

使用指南https://www.sql-workbench.eu/manual/commandline.html#commandline-connect-noprofile
设置为配置文件并保存配置文件以备将来使用。
这可以通过“7.2. 管理配置文件组”手动实现 https://www.sql-workbench.eu/manual/profiles.html#profile-workbench-settings

是否可以通过命令行保存配置文件?

SQLWorkbench64.exe -username=user -password=pass -url=jdbc.. -driver=Redshift driverJar=filepath

没有对此的直接支持。

但是您可以使用 WbStoreProfile 命令将当前活动的连接存储为配置文件。

您可以通过 -command 参数执行此操作。

SQLWorkbench64.exe  -command="WbStoreProfile -name=test" -username=user -password=pass -url=jdbc.. -driver=Redshift driverJar=filepath

这将连接到数据库,然后 运行 WbStoreProfile 命令并再次退出。

配置文件将以名称“test”保存在 wb-profiles.properties

但手动编辑 wb-profiles.properties 可能更容易。