Skip to content
Snippets Groups Projects
Commit e8d864c0 authored by akwizgran's avatar akwizgran
Browse files

Throw DbException if database encryption key is missing.

This can happen on Android if the app is automatically restarted after a
crash.
parent bd566fdb
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ class H2Database extends JdbcDatabase {
protected Connection createConnection() throws SQLException {
byte[] key = config.getEncryptionKey();
if(key == null) throw new IllegalStateException();
if(key == null) return null;
char[] password = encodePassword(key);
Properties props = new Properties();
props.setProperty("user", "user");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment