How to print sql statement in cakephp, cakephpsql statement_PHP tutorial

WBOY
Release: 2016-07-13 10:06:39
Original
1108 people have browsed it

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;
Copy after login

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...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!