https://gist.github.com/wildy/16415fa756d2073a2d3f8e8170646888
Seems like I got hit by a bug where Exposed can't find the table if using a newer H2 version that defaults to being case-sensitive. But applying the suggested workaround doesn't fix it. Where did I screw up this time? 🙂
(and excuse me, I've been sitting here for um... almost 16 hours straight, redid almost everything but now can't get it to work because of the db)
s
Sean Keane
04/05/2021, 4:52 AM
Have you tried the following with named parameters?
Copy code
Database.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.