Internal HSQL database complains about privileges

前端 未结 8 1910
时光取名叫无心
时光取名叫无心 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:31

    Try explicitly specifying the SCHEMA name for the table/sequence being referenced.

    I just faced a similar issue where in my sequence was not being recognized and then I realized that in my Hibernate @SequenceGenerator annotation I didn't prefix the schema to the sequence ref.

    call next value for EXAMPLE_SCHEMA.TEST_SEQ
    

提交回复
热议问题