WildOne (Yuri)
04/03/2021, 6:13 AMSean Keane
04/05/2021, 4:52 AMDatabase.connect("jdbc:h2:mem:test", driver = "org.h2.Driver", user = "root", password = "")
Not sure if you have managed to connect already or if it's something new.
You could also try this.
Database.connect({ DriverManager.getConnection("jdbc:h2:mem:test;"EXTRA CONFIG") })
If neither of these work you could also check out https://github.com/openbouquet/HikariCPtapac
04/05/2021, 3:22 PM