mirror of https://github.com/adamdruppe/arsd.git
affected rows thing
This commit is contained in:
parent
777b82fd9b
commit
ac64e36c36
14
postgres.d
14
postgres.d
|
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue