mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
MySQL: Implemented affectedRowCount
This commit is contained in:
@@ -63,7 +63,7 @@ std::size_t MySQLStatementImpl::columnsReturned() const
|
||||
|
||||
std::size_t MySQLStatementImpl::affectedRowCount() const
|
||||
{
|
||||
return 0;
|
||||
return _stmt.getAffectedRowCount();
|
||||
}
|
||||
|
||||
|
||||
|
@@ -45,6 +45,8 @@ namespace MySQL {
|
||||
|
||||
|
||||
StatementExecutor::StatementExecutor(MYSQL* mysql)
|
||||
: _pSessionHandle(mysql)
|
||||
, _affectedRowCount(0)
|
||||
{
|
||||
if (!(_pHandle = mysql_stmt_init(mysql)))
|
||||
throw StatementException("mysql_stmt_init error");
|
||||
@@ -115,6 +117,8 @@ void StatementExecutor::execute()
|
||||
throw StatementException("mysql_stmt_execute error", _pHandle, _query);
|
||||
|
||||
_state = STMT_EXECUTED;
|
||||
|
||||
_affectedRowCount = mysql_affected_rows(_pSessionHandle);
|
||||
}
|
||||
|
||||
|
||||
@@ -149,5 +153,10 @@ bool StatementExecutor::fetchColumn(std::size_t n, MYSQL_BIND *bind)
|
||||
return (res == 0);
|
||||
}
|
||||
|
||||
std::size_t StatementExecutor::getAffectedRowCount() const
|
||||
{
|
||||
return _affectedRowCount;
|
||||
}
|
||||
|
||||
|
||||
}}}
|
||||
|
Reference in New Issue
Block a user