what is the url for the jdbc driver? im using ```...
# exposed
h
what is the url for the jdbc driver? im using
Copy code
val jdbc = "jdbc:mysql://$user:$pass@$url"
    Database.connect(jdbc, driver)
with
com.mysql.cj.jdbc.Driver
as driver, and url being
[redacted]:3306/[databaseName]
t
Database.connect("jdbc:<mysql://host:port/database>", "com.mysql.jdbc.Driver", $username, $password)
h
Thanks!