Merge pull request #191 from botskonet/master

Adding db code to help avoid stale connections
This commit is contained in:
nossr50 2012-03-04 12:06:14 -08:00
commit 07296f14d7

View File

@ -38,7 +38,10 @@ public class Database {
try try
{ {
System.out.println("[mcMMO] Attempting connection to MySQL..."); System.out.println("[mcMMO] Attempting connection to MySQL...");
conn = DriverManager.getConnection(connectionString); java.util.Properties conProperties = new java.util.Properties();
conProperties.put("autoReconnect", "true");
conProperties.put("maxReconnects", "3");
conn = DriverManager.getConnection(connectionString, conProperties);
isConnected = true; isConnected = true;
System.out.println("[mcMMO] Connection to MySQL established!"); System.out.println("[mcMMO] Connection to MySQL established!");
} catch (SQLException ex) } catch (SQLException ex)