SYNOPSIS
#include <opendbx/api.h>
uint64_t odbx_rows_affected (odbx_result_t* result);
DESCRIPTION
Returns the number of rows that have been changed by the current statement whose result set was retrieved by odbx_result(). Affected rows are only returned for DELETE, INSERT or UPDATE statements and their concrete number depends on the database implementation. Instead returning the number of rows which are matched by the WHERE clause, MySQL for example does only count the rows whose values have really been changed.The result parameter required by this function must be a valid result set returned by odbx_result() and must not has been feed to odbx_result_finish() before.