* [refac] use dbh::$queries instead of dao::$querys.

This commit is contained in:
liugang
2025-05-26 17:33:42 +08:00
parent 9d07dce9c2
commit 4753fd38eb
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -516,7 +516,7 @@ class commonModel extends model
{
$info['timeUsed'] = round(getTime() - $startTime, 4) * 1000;
$info['memory'] = round(memory_get_peak_usage() / 1024, 1);
$info['querys'] = count(dao::$querys);
$info['querys'] = count(dbh::$queries);
vprintf($this->lang->runInfo, $info);
return $info;
}