#1539 Columns handler: finishing touches

- Add relocation rule for shading of the library
- Fix SQLite connection not being refreshed on reload
This commit is contained in:
ljacqu
2018-04-02 23:19:13 +02:00
parent ad9e6dbb6d
commit fc54c0311b
2 changed files with 5 additions and 2 deletions
@@ -60,7 +60,6 @@ public class SQLite extends AbstractSqlDataSource {
ConsoleLogger.logException("Error during SQLite initialization:", ex);
throw ex;
}
this.columnsHandler = AuthMeColumnsHandler.createForSqlite(con, settings);
}
@VisibleForTesting
@@ -86,6 +85,7 @@ public class SQLite extends AbstractSqlDataSource {
ConsoleLogger.debug("SQLite driver loaded");
this.con = DriverManager.getConnection("jdbc:sqlite:plugins/AuthMe/" + database + ".db");
this.columnsHandler = AuthMeColumnsHandler.createForSqlite(con, settings);
}
/**