Please disassociate religious stuff from tech stuff. Thank you. > org.h2.jdbc.JdbcSQLException: Wrong password format, must be: file > password <space> user password [90050-102]
The above error is a likely indicator that your database file was encrypted. Most of the time, when you use encrypted database mode for H2, you would need your password in "<encryption password><spacing><user password>" format. Judging from both of your two JDBC urls, you did not specify the use of encryption mode and that is the problem. It is more likely that previously, your H2 database was created with encryption mode either in XTEA or AES mode switched on 'CIPHER=<XTEA/ AES>;' appended to the rear of the url as a parameter for H2. So now what you need is to find out which encryption was used (XTEA or AES) when the database was created and find out the encryption password. if you could not find the encryption password, there is no way around it to read the data as it is encrypted data (no backdoors). -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
