-
Notifications
You must be signed in to change notification settings - Fork 387
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
Currently, the JDBC string containing the host name and port is hardcoded. For example, consider the connection string for MySQL:
| String url = "jdbc:mysql://localhost:3306/?serverTimezone=UTC&useSSL=false&allowPublicKeyRetrieval=true"; |
It would be desirable to make this configurable. We could provide an option to set the JDBC string for each DBMS. For example, for MySQL, the string could look like this:
"jdbc:mysql://$(HOST_NAME):$(PORT)/?serverTimezone=UTC&useSSL=false&allowPublicKeyRetrieval=true"
We could then also provide two options to set the host name and port, which are then used to replace the placeholder in the JDBC string.
This would make everything configurable, but also be convenient for users. Most users could go with the default options. Some users might need to configure the port and host. Only very few users probably would need to change the JDBC query string.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers