本文實例講述了Yii調試查看執行SQL語句的方法。分享給大家供大家參考,具體如下:
開戶debug
修改配置文件 :protected/config/main.php,
代碼如下 復制代碼'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'trace, info, error, warning',
),
// uncomment the following to show log messages on web pages
array(
'class'=>'CWebLogRoute',
'levels'=>'trace',//級別為trace
'categories'=>'system.db.*'//只顯示關於數據庫信息,包括數據庫連接,數據庫執行語句
),
),
),