Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的程序中嵌入了 hsql db,并在我的 *.script 文件中自动创建表。但是,我想要 hsql gui,以便我可以更好地检查一切是否正确?
如何为我的嵌入式 db 文件加载 gui?
可以使用下面的方法调用,yourdb作为你的 mem: 数据库的名称:
yourdb
org.hsqldb.util.DatabaseManagerSwing.main(new String[] { "--url", "jdbc:hsqldb:mem:yourdb", "--noexit" });
该方法应该在它自己的线程中执行,这样它就不会停止你的程序。