I am having some trouble accessing the mem database via the h2-browser
on a Play
framework project.
With the configuration below, that I th
To browse the contents of your database via the H2 Web Console, start both the web console and the Play application via the same Play console:
~/Projects/play-app $ activator
[play-app] $ h2-browser
[play-app] $ run
Play-App In-Memory Database
) to easily access them again later:
org.h2.Driver
jdbc:h2:mem:play
sa
Note that the above settings have to match your actual configuration (db.default.url
and so on).