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
In case you got stuck with the default non-blank user when running the client, the full set of parameters will get you past that:
java -cp \h2.jar org.h2.tools.Shell -url "jdbc:h2:file:" -driver "org.h2.Driver" -user "" -password ""