rowsAffected field added

This commit is contained in:
SPRINX0\prochazka
2025-11-06 08:23:31 +01:00
parent 1553ec3bd4
commit 43fd7b6000
7 changed files with 16 additions and 5 deletions

View File

@@ -74,6 +74,7 @@ const libsqlDriver = {
message: `${rowCounter.count} rows affected`,
time: new Date(),
severity: 'info',
rowsAffected: rowCounter.count,
});
}
});

View File

@@ -69,6 +69,7 @@ const driver = {
message: `${rowCounter.count} rows affected`,
time: new Date(),
severity: 'info',
rowsAffected: rowCounter.count,
});
}
});

View File

@@ -27,6 +27,7 @@ function runStreamItem(dbhan, sql, options, rowCounter) {
message: `${rowCounter.count} rows affected`,
time: new Date(),
severity: 'info',
rowsAffected: rowCounter.count,
});
rowCounter.count = 0;
rowCounter.date = null;