LoginSignup
6
6

More than 5 years have passed since last update.

CakePHPでSQLログを出したいマン

Posted at

CakePHP1.3でSQLログを出したいマン(☝ ՞ਊ ՞)

viewにSQLログを出す

<?php echo $this->element('sql_dump'); ?>

viewに書くとSQLログを書いてくれます。

SQLの数を増やす

SQLが投げられまくっているのに200件までしか表示されない場合です。

vi

cake/libs/model/datasources/datasource.php


/**
 * Maximum number of items in query log
 *
 * This is to prevent query log taking over too much memory.
 *
 * @var int Maximum number of queries in the queries log.
 * @access protected
 */
    var $_queriesLogMax = 200;

$_queriesLogMaxを200から増やすとその数だけSQLを出力してくれます。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6