From a program, I created a H2 database without specifying any user or password in the JDBC URL.
Now I\'m trying to access that database with the Script tool. The doc sa
try this:
java -cp h2*.jar org.h2.tools.Script -user "sa" -password "" -url "jdbc:h2:path_to_your_db_file"