In Liferay with hsql: Where is the database file

I am using Liferay with Apache Tomcat and hsql. I need to find the database file that is being used. According to the hsql documentation, there should be a lportal.data file in the / hsql directory data, but it is not.

+4
source share
2 answers

The sleep database consists of 4 files.

The .script file contains data like SQL, .log, which performed the last actions. .Properties and .lck configuration - db lock file.

This is a database, hsql has nothing to do with one large .data file. All other constructions typical for the database are generated and only in memory.

+4
source

Connection string jdbc:hsqldb:file:/D:/Coding/liferay-portal-6.1.0-ce-ga1/data/hsql/lportal for Squirrel SQL Client (Liferay on Apache Tomcat)

+2
source

All Articles