jdbcsql has no support for JDBC URL string. Tool without support for JDBC URL is limited to basic database configurations and it is just a toy... Think about a case that you need to connect to a Oracle DB cluster, in that case you need specify more details than just a hostname and port...
Example of simple JDBC URL to access local mysql database:
jdbc:mysql://localhost:3306/test
Look in the documenation how to configure JDBCConfig.properties file. The content of JDBCConfig.properties file is database urls.
This tool is just a toy! Everything is hardcoded and difficult to change by end user... :-(
An example of JDBC string to connect to AWS Aurora cluster (https://stackoverflow.com/questions/56403686/aurora-mysql-jdbc-fail-over)
This JDBC url is longer and has more options but it is not so bad as JDBC url for big Oracle cluster with several nodes.
With your design, user has to create extra "jar" archive for each cluster he needs to manage. Once you work for bigger company, you can manage "many" databases...
Possible workarround, I don't like it but it works. I use "-h" to pass JDBC url. Unfortunately, I have to use mandatory option "-d" even I don't need it.
This is what I added to JDBCConfig.properties file to define "jdbc" driver
I beleive you can do it much easier...
Last edit: Petr Slansky 2019-08-18
Congratulation for the brilliant decision.
I promise when I have enough time I'll added option for custom url.