mysqlxx: removed MYSQL_OPT_READ_TIMEOUT [#CONV-2647].

This commit is contained in:
Alexey Milovidov 2011-06-29 19:59:20 +00:00
parent 40c8f1e85e
commit d4ac9fe904

View File

@ -43,8 +43,7 @@ void Connection::connect(const char* db,
/// Установим таймауты /// Установим таймауты
unsigned int timeout = MYSQLXX_TIMEOUT; unsigned int timeout = MYSQLXX_TIMEOUT;
if (mysql_options(&driver, MYSQL_OPT_CONNECT_TIMEOUT, reinterpret_cast<const char *>(&timeout)) if (mysql_options(&driver, MYSQL_OPT_CONNECT_TIMEOUT, reinterpret_cast<const char *>(&timeout)))
|| mysql_options(&driver, MYSQL_OPT_READ_TIMEOUT, reinterpret_cast<const char *>(&timeout)))
throw ConnectionFailed(mysql_error(&driver), mysql_errno(&driver)); throw ConnectionFailed(mysql_error(&driver), mysql_errno(&driver));
if (!mysql_real_connect(&driver, server, user, password, db, port, NULL, driver.client_flag)) if (!mysql_real_connect(&driver, server, user, password, db, port, NULL, driver.client_flag))