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.
我使用类路径成功地将 javadb 嵌入到我的应用程序中,但问题是:我希望 hibernate 能够使用数据库,但我总是在 netbeans sayng “启用建立连接”中遇到错误。请问有什么帮助吗?
本地 HSQLDB 数据库的 URL 是jdbc:hsqldb:file:file_path_namefile_path_name 通常是一个以名称结尾的绝对路径。然后,数据库引擎将创建一些具有给定名称但具有预定义扩展名的文件。这方面的一个例子是:jdbc:hsqldb:file:/mydata/mydb这将产生mydb.properties,mydb.script和目录中的几个其他文件/mydata。
jdbc:hsqldb:file:file_path_name
jdbc:hsqldb:file:/mydata/mydb
mydb.properties
mydb.script
/mydata