Home  >  Article  >  Backend Development  >  How to print sql statement in cakephp, cakephpsql statement_PHP tutorial

How to print sql statement in cakephp, cakephpsql statement_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:06:391110browse

How to print sql statement in cakephp, cakephpsql statement

The example in this article describes how cakephp prints sql statements. Share it with everyone for your reference. The specific implementation method is as follows:

Copy the following statement into your code, you can print out 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 be helpful to everyone’s PHP programming based on the cakePHP framework.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/958255.htmlTechArticleHow cakephp prints sql statements, cakephpsql statement This article describes how cakephp prints sql statements. Share it with everyone for your reference. The specific implementation method is as follows: Change the following statement...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn