I am very new to H2 , grails 2.0 comes with h2 database and dbconsole.it tools section of dbconsole there is a option to take database backup,it asks 2 things
Target file name: ~/backup.zip (by default)
Source directory: ~ (by default)
Source database name: opal (my database name)
if i press run , system gives following messageCommand line:
java -cp h2*.jar org.h2.tools.Backup -file "~/backup.zip" -dir "~"Result:
No database files have been found in directory C:/Documents and Settings/Hussain for the database opal
my sql url = "jdbc:mysql://localhost/opal"
user name : root
password : (none)
so, what is the correct way of taking database backup in dbconsole?