is it possible at all? Seems easy to be done in the first version of the framework.
Asked
Active
Viewed 984 times
2
-
it uses simple files to store, @Somatik – Leandro Apr 16 '12 at 00:08
1 Answers
4
Instead of using
# Default database configuration
db.default.driver=org.h2.Driver
db.default.url="jdbc:h2:mem:play"
you should be able to just use
# FS database configuration
db.default.driver=org.h2.Driver
db.default.url="jdbc:h2:playdb"
This will create the file in the current working directory. See the H2 CheatSheet for more information

Codemwnci
- 54,176
- 10
- 96
- 129