I just started off with Play framework but I'm having trouble executing the very first step. By default, the application.conf has in-memory database as its url
db.default.url="jdbc:h2:mem:play"
I tried changing this to
db.default.url="jdbc:h2:tcp://localhost/c:/Database/MyPlayDB"
after seeing this answer but my application does not run after making that change. The error which I get is
Error in custom provider, Configuration error: Configuration error[Cannot connect to database [default]]
Can somebody tell me if I need to make any other change or point me in the right direction?
Thanks!