MySQL: Implemented affectedRowCount

This commit is contained in:
Adrian Imboden
2013-02-21 20:34:20 +01:00
parent ae26e45bad
commit 4ce851672a
3 changed files with 14 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ std::size_t MySQLStatementImpl::columnsReturned() const
std::size_t MySQLStatementImpl::affectedRowCount() const
{
return 0;
return _stmt.getAffectedRowCount();
}