在带有hsql的Liferay中:数据库文件在哪里
我将 Liferay 与 Apache Tomcat 和 hsql 一起使用。我需要找到所使用的数据库文件。根据 hsql 文档,data/hsql 目录中应该有一个文件 lportal.data,但实际上没有。
I am using Liferay with Apache Tomcat and hsql. I need to locate the database file that is used. According to hsql documentation there should be a file lportal.data in the directory data/hsql, but there isn't one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
hibernate数据库由4个文件组成。
.script 文件包含 SQL 数据、最后发生的操作的 .log、配置的 .properties 以及数据库锁定文件的 .lck。
这些是数据库,hsql 不像一个大的 .data 文件。数据库的所有其他典型构造都是生成的,并且仅在内存中。
The hibernate database consists of 4 files.
The .script file contains the data as SQL, the .log that last actions that took place, the .properties the configuration and the .lck is the db lockfile.
These are the database, hsql has nothing like one big .data file. All other constructs that are typical for a database are generated and only in memory.
Squirrel SQL 客户端(Apache Tomcat 上的 Liferay)的连接线
jdbc:hsqldb:file:/D:/Coding/liferay-portal-6.1.0-ce-ga1/data/hsql/lportal
Connection line
jdbc:hsqldb:file:/D:/Coding/liferay-portal-6.1.0-ce-ga1/data/hsql/lportal
for Squirrel SQL Client (Liferay on Apache Tomcat)