Cakephp is used to print SQL statements. Cakephp: how to print SQL statements. This document describes how to print SQL statements by cakephp. Share it with you for your reference. The specific implementation method is as follows: the following statement cakephp is used to print the SQL statement, cakephpsql statement
This example describes how to print SQL statements in cakephp. Share it with you for your reference. The specific implementation method is as follows:
Copy the following statement to your code and print all the SQL statements before this:
$ Sources = ConnectionManager: sourceList (); if (! Isset ($ logs): $ logs = array (); foreach ($ sources as $ source): $ db = & ConnectionManager: getDataSource ($ source); if (! $ Db-> isInterfaceSupported ('getlog'): continue; endif; $ logs [$ source] = $ db-> getLog (); endforeach; endif;
I hope this article will help you design php programs based on the cakePHP framework.
Examples in this article describes how to print SQL statements in cakephp. Share it with you for your reference. The specific implementation method is as follows...