![]() |
qry and execution counter? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: qry and execution counter? (/showthread.php?tid=23582) |
qry and execution counter? - El Forum - 10-15-2009 [eluser]taschentuch[/eluser] hey guys, im starting now with CI and searching for something like a qry counter like this: Execution Time: 405 ms Qrys: 30 queries and additional a mysql debugger with shows me at the bottom or top of the page the executet qrys like this: [1] select * from test where id = 1 [2] insert into test (id, username) values (1, test) [3] update users set last_access = now() i have a mysqlclass with this features have... have searched in the doc but cant find something like this here... thx sry im german qry and execution counter? - El Forum - 10-15-2009 [eluser]davidbehler[/eluser] The Profiler might be exactly what you are looking for. qry and execution counter? - El Forum - 10-15-2009 [eluser]taschentuch[/eluser] hey, yes thx this is perfect =) |