我正在使用
Java编写服务器 – 客户端应用程序,我需要在服务器端实现本地数据库,我决定使用H2数据库引擎.
还有一件事是我通过TCP连接来启动和运行数据库.
这是我到目前为止所放在一起的:
Class.forName("org.h2.Driver"); Server server = Server.createTcpServer(DB_PATH).start(); Connection currentConn = DriverManager.getConnection(DB_PATH,DB_USER,DB_PASSWORD);
连接字符串是jdbc:h2:tcp:// localhost /〜/ test.
这段代码返回一个例外:
Feature not supported: "jdbc:h2:tcp://localhost/~/test" [50100-176]
我跟着this article.
解决方法
这样的事情应该有效
Server server = null; try { server = Server.createTcpServer("-tcpAllowOthers").start(); Class.forName("org.h2.Driver"); Connection conn = DriverManager. getConnection("jdbc:h2:tcp://localhost/~/stackoverflow","sa",""); System.out.println("Connection Established: " + conn.getMetaData().getDatabaseProductName() + "/" + conn.getCatalog()); } catch (Exception e) { e.printStackTrace();
输出为Connection Established:H2 / STACKOVERFLOW
这已通过h2-1.4.184测试