如何在CakePHP 3.2中获取最后一次运行查询?

时间:2016-02-09 11:35:11

标签: php cakephp-3.x

我想在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中做到这一点?

3 个答案:

答案 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']
]);

Cookbook 3.0 - Query Logging

答案 2 :(得分:0)

在Controller中,我们需要编写如下两行

echo "<pre>";
print_r(debug($queryResult));die; 

它将显示所有结果以及sql查询语法。 在这里,我们使用debug来显示结果。