[REQUEST]When I open the server I get this error:
and this the part of the first error.# ERR: SQLException in mysqlconn_wrapper.cpp(MySQLConnWrapper::manageException) on line 36
# ERR: Can't connect to MySQL erver on '192.168.178.23' (10060) (MySQL error code: 2003, SQLState: HY000 )
Then, about the second error.. I changed ip in the ini files and in the packets as well.void MySQLConnWrapper::manageException(sql::SQLException& e)
{ <- Line 36
if (e.getErrorCode() != 0) {
cout << "# ERR: SQLException in " << __FILE__;
cout << "(" << __FUNCTION__ << ") on line " << __LINE__ << endl;
cout << "# ERR: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
}


Reply With Quote


