> However, it still does not work with user/password sa/sa
It looks like the database was created previously with a different
user name / password combination.
Did you know the an error analyzer tool? To use it, go to the H2 home
page at http://www.h2database.com , go to "Error Analyzer", paste the
stack trace there, and click on 'Details'. You will get:
WRONG_USER_OR_PASSWORD = 8004
The error with code 8004 is thrown when there is no such user
registered in the database, when the user password does not match, or
when the database encryption password does not match (if database
encryption is used). You could also view the source code (of H2) where
this exception occurs.
Regards,
Thomas