We should be reconnecting automagically.

This commit is contained in:
t00thpick1 2014-08-11 12:16:27 -04:00
parent 5a47f9fa86
commit 294141c353

View File

@ -60,7 +60,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
Properties connectionProperties = new Properties();
connectionProperties.put("user", Config.getInstance().getMySQLUserName());
connectionProperties.put("password", Config.getInstance().getMySQLUserPassword());
connectionProperties.put("autoReconnect", "false");
connectionProperties.put("autoReconnect", "true");
connectionProperties.put("cachePrepStmts", "true");
connectionProperties.put("prepStmtCacheSize", "64");
connectionProperties.put("prepStmtCacheSqlLimit", "2048");