getUpdatedRows method
Return the count of updated row.
Implementation
int getUpdatedRows() {
var rowCount = _ffiDb.getUpdatedRows();
if (logLevel >= sqfliteLogLevelSql) {
print('$_prefix Modified $rowCount rows');
}
return rowCount;
}
Return the count of updated row.
int getUpdatedRows() {
var rowCount = _ffiDb.getUpdatedRows();
if (logLevel >= sqfliteLogLevelSql) {
print('$_prefix Modified $rowCount rows');
}
return rowCount;
}