Is there a way to access Play framework’s embedded H2 database (db=fs in application.conf) when the application is in prod mode? (like with the /@db url, which doesn’t work in this mode) I use Play version 1.2.4.
Is there a way to access Play framework’s embedded H2 database ( db=fs in
Share
The @db url is disabled in PROD mdoe for security reasons. In fact, any URL-based access to the database would be very dangerous.
If you have access to the server, you can try connect via a JDBC client, using:
See this.