affected rows thing

This commit is contained in:
Adam D. Ruppe 2022-05-08 10:44:31 -04:00
parent 777b82fd9b
commit ac64e36c36
1 changed files with 14 additions and 0 deletions

View File

@ -184,6 +184,19 @@ class PostgresResult : ResultSet {
return row;
}
int affectedRows() {
auto g = PQcmdTuples(res);
if(g is null)
return 0;
int num;
while(*g) {
num *= 10;
num += *g - '0';
g++;
}
return num;
}
void popFront() {
position++;
if(position < numRows)
@ -308,6 +321,7 @@ extern(C) {
int row_number,
int column_number);
char* PQcmdTuples(PGresult *res);
}