From: Rosanne DiMesio Subject: [APPDB] query.php: implement query_affected_rows() Message-Id: <20170515011358.10646-1-dimesio@earthlink.net> Date: Sun, 14 May 2017 20:13:58 -0500 Signed-off-by: Rosanne DiMesio --- include/query.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/query.php b/include/query.php index a4b82d8..2b20f3a 100644 --- a/include/query.php +++ b/include/query.php @@ -176,6 +176,12 @@ function query_num_rows($hResult) return $hResult->num_rows; } +function query_affected_rows(); +{ + global $hAppdbLink; + return $hAppdbLink->affected_rows; +} + function query_escape_string($sString) { global $hAppdbLink; -- 2.12.0