Skip to content
Snippets Groups Projects
Commit 679923af authored by Steven Murray's avatar Steven Murray
Browse files

MysqlConn constructor now sets the CLIENT_FOUND_ROWS flag so that the reported...

MysqlConn constructor now sets the CLIENT_FOUND_ROWS flag so that the reported number of rows affected by a DML statement matches that of Oracle, PostgreSQL and SQLite
parent c56511ef
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ MysqlConn::MysqlConn(const std::string& host,
if (mysql_real_connect(m_mysqlConn, host.c_str(),
user.c_str(), passwd.c_str(), db.c_str(), port,
NULL, 0) == NULL) {
NULL, CLIENT_FOUND_ROWS) == NULL) {
unsigned int rc = mysql_errno(m_mysqlConn);
std::string msg = mysql_error(m_mysqlConn);
throw exception::Exception(std::string(" errno: ") + std::to_string(rc) + " " + msg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment