码迷,mamicode.com
首页 > 数据库 > 详细

yii 显示mysql执行语句

时间:2015-05-07 18:17:30      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

访问protected/config/main.php修改如下 

‘db‘=>array(
   ‘connectionString‘ => ‘mysql:host=localhost;dbname=yii_computer‘,
   ‘emulatePrepare‘ => true,
   ‘username‘ => ‘root‘,
   ‘password‘ => ‘‘,
   ‘charset‘ => ‘utf8‘,
   ‘tablePrefix‘ => ‘yii_computer_‘,
   //让捆绑的变量显示出来
   ‘enableProfiling‘ => YII_DEBUG,
   ‘enableParamLogging‘ =>YII_DEBUG,
  ),

 

‘log‘=>array(
   ‘class‘=>‘CLogRouter‘,
   ‘routes‘=>array(
    array(
     ‘class‘=>‘CFileLogRoute‘,
     ‘levels‘=>‘error, warning‘,
    ),
    // uncomment the following to show log messages on web pages
    
    array(
     ‘class‘=>‘CWebLogRoute‘,

     //添加的内容
     ‘levels‘ =>‘trace‘,
     ‘categories‘ => ‘system.db*‘,
    ),
   
   ),
  ),

yii 显示mysql执行语句

标签:

原文地址:http://www.cnblogs.com/zwue/p/4485422.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!