Hi,
I have the below setting in the application.conf file
db.default.url="jdbc:h2:mem:play;MODE=PostgreSQL;LOCK_MODE=0"
and when I run play using
$ play run
I see the below line in the log file
database [default] connected at jdbc:h2:mem:play
instead of seeing
database [default] connected at jdbc:h2:mem:play;MODE=PostgreSQL;LOCK_MODE=0
I also see when I switch to the on-disk db which is a PostgreSQL database, the 1.sql file is amended with PostgreSQL style formatting and the moment I switch back to the above settings (in-memory) it reverts to its original sql. I think this is happening due to the fact that the PostgreSQL mode isn't taking effect.
Can anyone suggest what I'm not doing or doing wrong? Any help will be appreciated!
Cheers,
mani