Merge pull request #154 from ClaudiuHKS/master

Add MySQL Reconnect Feature
This commit is contained in:
Vincent Herbet 2014-10-28 10:15:30 +01:00
commit d5086f6a54

View File

@ -57,6 +57,12 @@ IDatabase *MysqlDriver::_Connect(DatabaseInfo *info, int *errcode, char *error,
mysql_options(mysql, MYSQL_OPT_CONNECT_TIMEOUT, (const char *)&(info->max_timeout));
}
/** Have MySQL automatically reconnect if it times out or loses connection.
* This will prevent "MySQL server has gone away" errors after a while.
*/
my_bool my_true = true;
mysql_options(mysql, MYSQL_OPT_RECONNECT, (const char *)&my_true);
if (mysql_real_connect(mysql,
info->host,
info->user,