MySql: GetRowsProcessed fix (thanks zsolt)

git-svn-id: svn://ultimatepp.org/upp/trunk@7441 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-06-11 06:39:47 +00:00
parent 5be7ac8fd6
commit 698ef5b769

View file

@ -367,6 +367,8 @@ bool MySqlConnection::Execute() {
f.name = "LAST_INSERT_ID";
rows = 1;
}
else // CHECK: Is this really necessarry?
rows = (int)mysql_affected_rows(mysql);
}
return true;
}