From ac64e36c36002e1069ea6fbf1cb50bc50f23b2ba Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 8 May 2022 10:44:31 -0400 Subject: [PATCH] affected rows thing --- postgres.d | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/postgres.d b/postgres.d index 593894f..d5f0d47 100644 --- a/postgres.d +++ b/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); }