CodeIgniter Forums
Adodb like debug? - 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: Adodb like debug? (/showthread.php?tid=5458)



Adodb like debug? - El Forum - 01-22-2008

[eluser]Armorfist[/eluser]
Hello,

Is it possible to print to a file, or to the browser, all the query's that were executed in a model like in adodb with $db->debug = 1?

Thanks


Adodb like debug? - El Forum - 01-22-2008

[eluser]Michael Wales[/eluser]
In your controller:
Code:
$this->output->enable_profiler(TRUE);



Adodb like debug? - El Forum - 01-22-2008

[eluser]Armorfist[/eluser]
Thank you very much Michael!