aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/sys/db.php
diff options
context:
space:
mode:
Diffstat (limited to 'ratatoeskr/sys/db.php')
-rw-r--r--ratatoeskr/sys/db.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/ratatoeskr/sys/db.php b/ratatoeskr/sys/db.php
index e5caddc..cbf2100 100644
--- a/ratatoeskr/sys/db.php
+++ b/ratatoeskr/sys/db.php
@@ -76,6 +76,8 @@ function qdb_fmt()
return qdb_vfmt(func_get_args());
}
+$queries_fired = 0;
+
/*
* Function: qdb
* Query Database.
@@ -89,10 +91,12 @@ function qdb_fmt()
*/
function qdb()
{
+ global $queries_fired;
$query = qdb_vfmt(func_get_args());
$rv = mysql_query($query);
if($rv === false)
throw new MySQLException(mysql_errno() . ': ' . mysql_error() . (__DEBUG__ ? ("[[FULL QUERY: " . $query . "]]") : "" ));
+ $queries_fired++;
return $rv;
}