Internal HSQL database complains about privileges

前端 未结 8 1908
时光取名叫无心
时光取名叫无心 2020-12-10 03:58

I\'m setting up a standalone Java service with an in-process, in-memory HSQL database.

Persistence.xml



        
8条回答
  •  悲&欢浪女
    2020-12-10 04:30

    I too have faced the same error. It got resolved when i gave the absolute path of script file in "connection.url".

    < property name="connection.url">jdbc:hsqldb:file:C:\Hibernate-example\database\mydb;shutdown=true < /property>

提交回复
热议问题