我想在CakePHP 3.2中获取最后执行的查询,我之前在CakePHP 2.x中使用了以下内容: -
function getLastQuery() {
Configure::write('debug', 2);
$dbo = $this->getDatasource();
$logs = $dbo->getLog();
$lastLog = end($logs['log']);
$latQuery = $lastLog['query'];
echo "<pre>";
print_r($latQuery);
}
我怎么能在CakePHP 3.x中做到这一点?
答案 0 :(得分:12)
用简单的英语:你需要做的就是修改 config / app.php
找到Datasources
配置并设置'log' => true
'Datasources' => [
'default' => [
'className' => 'Cake\Database\Connection',
'driver' => 'Cake\Database\Driver\Mysql',
'persistent' => false,
'host' => 'localhost',
...
'log' => true, // Set this
]
]
如果您的应用处于调试模式,您将在页面显示SQL错误时看到SQL查询。如果未启用调试模式,则还可以通过添加以下内容将SQL查询记录到文件中:
<强>配置/ app.php 强>
找到Log
配置并添加新的日志类型:
'Log' => [
'debug' => [
'className' => 'Cake\Log\Engine\FileLog',
'path' => LOGS,
'file' => 'debug',
'levels' => ['notice', 'info', 'debug'],
'url' => env('LOG_DEBUG_URL', null),
],
'error' => [
'className' => 'Cake\Log\Engine\FileLog',
'path' => LOGS,
'file' => 'error',
'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'],
'url' => env('LOG_ERROR_URL', null),
],
// Add the following...
'queries' => [
'className' => 'File',
'path' => LOGS,
'file' => 'queries.log',
'scopes' => ['queriesLog']
]
],
现在,您的SQL查询将写入日志文件,您可以在/logs/queries.log
答案 1 :(得分:0)
添加了Database \ ConnectionManager :: get()。它取代了getDataSource()
在Cookbook 3.0之后,您需要启用Query Logging
并选择文件或控制台日志记录。
use Cake\Log\Log;
// Console logging
Log::config('queries', [
'className' => 'Console',
'stream' => 'php://stderr',
'scopes' => ['queriesLog']
]);
// File logging
Log::config('queries', [
'className' => 'File',
'path' => LOGS,
'file' => 'queries.log',
'scopes' => ['queriesLog']
]);
答案 2 :(得分:0)
在Controller中,我们需要编写如下两行
echo "<pre>";
print_r(debug($queryResult));die;
它将显示所有结果以及sql查询语法。 在这里,我们使用debug来显示结果。