Is it possible to reset a password for an encrypted & embedded hsqldb database?
I can open it, establish the connection, but I want to remove the password, tried this
db.update("SET password \"\"");
db.update("ALTER USER SA SET password \"\"");
db.update("ALTER USER SA SET password DIGEST \"\"");
db.update("ALTER USER SA SET password NULL");
Nothing works. Is this even supported?
PS.
The encryption key is passed as
;crypt_key="16def4bd3310e999f1a8d8d369986ab9";crypt_type=RC2;
in JDBC connection URL.