2009-12-04 03:41:31 +00:00
|
|
|
<?php
|
2009-12-19 18:24:00 +00:00
|
|
|
/**
|
|
|
|
* SQL Dump element. Dumps out SQL log information
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.templates.elements
|
|
|
|
* @since CakePHP(tm) v 1.3
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
if (!class_exists('ConnectionManager') || Configure::read('debug') < 2) {
|
2009-12-04 03:41:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
2010-08-27 01:24:09 +00:00
|
|
|
$noLogs = !isset($logs);
|
|
|
|
if ($noLogs):
|
2010-08-11 03:09:27 +00:00
|
|
|
$sources = ConnectionManager::sourceList();
|
|
|
|
|
2009-12-04 04:29:28 +00:00
|
|
|
$logs = array();
|
|
|
|
foreach ($sources as $source):
|
|
|
|
$db =& ConnectionManager::getDataSource($source);
|
|
|
|
if (!$db->isInterfaceSupported('getLog')):
|
|
|
|
continue;
|
|
|
|
endif;
|
|
|
|
$logs[$source] = $db->getLog();
|
|
|
|
endforeach;
|
2010-08-27 01:24:09 +00:00
|
|
|
endif;
|
2009-12-04 04:29:28 +00:00
|
|
|
|
2010-08-27 01:24:09 +00:00
|
|
|
if ($noLogs || isset($_forced_from_dbo_)):
|
2010-08-11 03:09:27 +00:00
|
|
|
foreach ($logs as $source => $logInfo):
|
|
|
|
$text = $logInfo['count'] > 1 ? 'queries' : 'query';
|
|
|
|
printf(
|
|
|
|
'<table class="cake-sql-log" id="cakeSqlLog_%s" summary="Cake SQL Log" cellspacing="0" border = "0">',
|
|
|
|
preg_replace('/[^A-Za-z0-9_]/', '_', uniqid(time(), true))
|
|
|
|
);
|
|
|
|
printf('<caption>(%s) %s %s took %s ms</caption>', $source, $logInfo['count'], $text, $logInfo['time']);
|
|
|
|
?>
|
|
|
|
<thead>
|
|
|
|
<tr><th>Nr</th><th>Query</th><th>Error</th><th>Affected</th><th>Num. rows</th><th>Took (ms)</th></tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
foreach ($logInfo['log'] as $k => $i) :
|
|
|
|
echo "<tr><td>" . ($k + 1) . "</td><td>" . h($i['query']) . "</td><td>{$i['error']}</td><td style = \"text-align: right\">{$i['affected']}</td><td style = \"text-align: right\">{$i['numRows']}</td><td style = \"text-align: right\">{$i['took']}</td></tr>\n";
|
|
|
|
endforeach;
|
|
|
|
?>
|
|
|
|
</tbody></table>
|
|
|
|
<?php
|
2010-08-27 01:24:09 +00:00
|
|
|
endforeach;
|
|
|
|
else:
|
|
|
|
echo '<p>Encountered unexpected $logs cannot generate SQL log</p>';
|
2010-08-11 03:09:27 +00:00
|
|
|
endif;
|
2009-12-04 03:41:31 +00:00
|
|
|
?>
|