[h2] Re: org.h2.tools.XXXX NOT FOUND!

2017-05-10 Thread 'H. Heinzelmann' via H2 Database
Hi Roy Xu, it seems I have the same problem, too. I get an error message in German that means the same. I try to use the H2 tools with .bat or windows cmd.exe. I also tried to use java -cp ./* org.h2.tools.Shell but it ends in the same message. I also tried to change the CLASSPATH in the

[h2] Re: org.h2.tools.XXXX NOT FOUND!

2016-02-16 Thread Roy Xu
Hi Peter, The wildcard '*' in "java -cp h2***.jar org.h2.tools.Server" should be a "Filename Expansion" in Bash not a classpath wildcard. A classpath wildcard should be '*' not "*.jar" or "xx*.jar". So you can execute "java -cp ./* org.h2.tools.Server" in Windows cmd: > java -cp ./*