summaryrefslogtreecommitdiff
path: root/db.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-16 13:37:35 +0100
committerAndrew Dolgov <[email protected]>2006-05-16 13:37:35 +0100
commitfea67e6a393c895f5b53b3695e98583587a9f479 (patch)
tree1c7fe6de30edbdd646f816603ab3ec14c2e587a5 /db.php
parent12fb24b921779038ec09b0fb2b31c94380a0aeaa (diff)
add db_affected_rows
Diffstat (limited to 'db.php')
-rw-r--r--db.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/db.php b/db.php
index fb2b8a4b9..00a6bc153 100644
--- a/db.php
+++ b/db.php
@@ -123,4 +123,10 @@ function db_close($link) {
}
}
+function db_affected_rows($link, $result) {
+ if (DB_TYPE == "pgsql") {
+ return pg_affected_rows($result);
+ } else if (DB_TYPE == "mysql") {
+ return mysql_affected_rows($link);
+ }
?>