We - and thousands others I'm sure, connect to H2/TCP all the time; surely it's a configuration issue on your side.
>From DbVisualizer I use: jdbc:h2:tcp://megaxi3:9092/mmdb (more configuration properties: http://d.pr/i/BSsm ) And from the H2 server side: Server.createTcpServer(new String[]{ "-tcpPort", Integer.toString(port), "-tcpAllowOthers", "-baseDir", System.getProperty("user.dir") + "/db", "-ifExists"}).start(); ...where "/db" is a classpath folder where we place the "mmdb" database (real filename: mmdb.h2.db but h2 doesn't require the ".h2.db" suffix and actually won't work if you include it) Good luck. On Thu, Dec 12, 2013 at 10:51 AM, bruce buchanan <[email protected] > wrote: > somebody must have done this, I cant get it to work > > thanks > > -- > 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/groups/opt_out. > -- 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/groups/opt_out.
