Added MySQL Reconnect Feature

If the connection times out or gets lost, this will prevent "MySQL server has gone away" error.
This commit is contained in:
HttrckCldHKS 2014-10-27 17:55:23 -07:00
parent 6e60b596d7
commit 005b50de92

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,