Hi
Tried the Sales sample project integration tests.
Replaced connection URL like below to avoid starting a host.
//dbUrl = "jdbc:hsqldb:hsql://localhost:9002/sales_test";
dbUrl = "jdbc:hsqldb:file:sales_test";
Launched CustomerLoadTest.
Committed Customer instances ok :
15:25:21.648 DEBUG com.haulmont.cuba.core.app.StoreFactory - No implementation is specified for _MAIN_ store, using RdbmsStore
15:25:21.698 DEBUG com.haulmont.cuba.core.app.RdbmsStore - commit: commitInstances=[com.company.sales.entity.Customer-0708cb71-4773-c66b-1d49-dff24ac73f80 [new]], removeInstances=[]
15:25:22.148 INFO hsqldb.db.HSQLDB5E0F4141A2.ENGINE - checkpointClose start
15:25:22.168 INFO hsqldb.db.HSQLDB5E0F4141A2.ENGINE - checkpointClose end
But then had this issue.
15:25:22.414 INFO com.haulmont.cuba.core.app.ConfigStorage - Loading DB-stored app properties cache
java.lang.RuntimeException: Error loading DB-stored app properties cache
Caused by: java.sql.SQLException: user lacks privilege or object not found: SYS_CONFIG Query: select NAME, VALUE from SYS_CONFIG Parameters: []
What is wrong ?
Mike