From: Jean-Marc Pigeon Date: Mon, 24 Nov 2025 23:58:44 +0000 (-0500) Subject: Improving the gessql.php trace capability X-Git-Tag: tag-0.18^0 X-Git-Url: https://jmp-git.ovh.safe.ca/?a=commitdiff_plain;h=41ecfa56ae5a36e9bf02f18983623d2c58a85589;p=jmp%2Fmailleur Improving the gessql.php trace capability --- diff --git a/www/gessql.php b/www/gessql.php index 0b77616..260b4b1 100644 --- a/www/gessql.php +++ b/www/gessql.php @@ -90,7 +90,8 @@ class probe { $sql .= " OFFSET {$this->offset}"; } - rou_alert(0,"class PROBE Param=<$this->params>"); + $paramsStr = json_encode($this->params); + rou_alert(0,"class PROBE sql=<$sql>, params=<$paramsStr>"); $stmt = $this->db->Select($sql,$this->params); return $stmt->fetchAll(); }