How do you view the contents of an embedded H2 database, in Play 2.7?
Prior research:
It seems the steps should be to run sbt shell
. Then run h2-browser
and sbt run
so they are in the same process? If using slick, then call an endpoint to trigger compilation/database creation.
With a configuration of
db.default.driver=org.h2.Driver
db.default.url="jdbc:h2:mem:play"
db.default.user=sa
db.default.password=""
I connects, but cannot authenticate. Multiple usr/password combinations tried.
Wrong user name or password [28000-199] 28000/28000
Scala:2.13
play-slick:4.0.2
h2:1.4.199