I been hit with this problem as well. Using oracle java 7. One solution is to put h2-<ver>.jar into "java.ext.dirs", which are in Ubuntu is one of /usr/lib/jvm/java-7-oracle-1.7.0.51/jre/lib/ext:/usr/java/packages/lib/ext.
Or you may use update bin/h2.sh with these lines (-Djava.ext.dirs="$dir"): #!/bin/sh dir=$(dirname "$0") java -cp "$dir/h2-1.3.176.jar:$H2DRIVERS:$CLASSPATH" -Djava.ext.dirs="$dir" org.h2.tools.Console "$@" -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/d/optout.
