i have a problem using HSQLDB 2.6.1 with Windows 10, jre1.8.0_311:
Beside the Superuser SA, i defined a second user U1, wanting it not to have all priviliges on the database.
For that i created a role SUSER
Code: Select all
CREATE ROLE SUSER;
GRANT SELECT,UPDATE("FN") ON TABLE PUBLIC."Persons" TO SUSER
GRANT ALL ON TABLE PUBLIC."Persons_Data" TO SUSER
Code: Select all
GRANT SUSER TO U1
The problem is, this works excellent using HSQLDB 2.5.1 but no more using version 2.6.1, both in combination with AOO and LO.
U1 does using HSQLDB 2.6.1 not have any access to change anything. Find attached both versions database-files.
I used
- hsqldb.jar and sqltool.jar for version 2.5.1
- hsqldb-jdk8.jar and sqltool-jdk8.jar for version 2.6.1
Then a macro will automatically connect ApacheOpenOffice to the database.
Can anyone comprehend this, help, or is this a Bug of HSQLDB 2.6.1?
R