hsqldb起步

阅读更多

1.复制 hsqldb.jar 到 "d:\db"


2.运行 hsqldb.jar


3.
hsqldb起步_第1张图片

 

4.先关闭后运行


hsqldb起步_第2张图片

运行:

 

public class TestHsqldb{
	public static void main(String[] args) throws SQLException {
		testConnection();
	}

	public static void testConnection() throws SQLException {
		String path = "d:/db/db_unionhelper";
		Connection c = DriverManager.getConnection("jdbc:hsqldb:file:" + path, "root", "root");
		System.out.println("Connection:"+c);
	}

}
  • hsqldb起步_第3张图片
  • 大小: 13.9 KB
  • hsqldb起步_第4张图片
  • 大小: 4.9 KB
  • 查看图片附件

你可能感兴趣的:(HSQLDB,JDBC,C,C++,C#)