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

Yii框架,在页面输出执行sql语句,方便调试

时间:2015-01-05 11:08:10      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

1.下载yiidebugtb,并且放入到 application.extensions.yiidebugtb 目录

2.修改main.php,加入如下代码:

‘log‘=>array(
            ‘class‘=>‘CLogRouter‘,
            ‘routes‘=>array(
                array(
                    ‘class‘=>‘CFileLogRoute‘,
                    ‘levels‘=>‘error, warning,trace‘,
                ),
// 以下是新加 array( // configuration for the toolbar ‘class‘=>‘XWebDebugRouter‘, ‘config‘=>‘alignLeft, opaque, runInDebug, fixedPos, collapsed, yamlStyle‘, ‘levels‘=>‘error, warning, trace, profile, info‘, //‘categories‘ => ‘system.db.*‘, ‘allowedIPs‘=>array(‘127.0.0.1‘,‘::1‘,‘192\.168\.1[0-5]\.[0-9]{3}‘,‘如果程序在外网需要填入你的公网的ip‘), ), ), )

3.db链接的配置里面做下修改:

‘db‘=>array(
            ‘connectionString‘=>‘mysql:host=*.*.*.*;dbname=test‘,
            ‘emulatePrepare‘=>true,   // 加入
            ‘enableParamLogging‘ => true, // 加入 
            ‘username‘=>‘-----‘,
            ‘password‘=>‘---‘,
            ‘charset‘=>‘utf8‘,
            ‘schemaCachingDuration‘=>‘0‘,
            ‘autoConnect‘=>false,
        ),

Yii框架,在页面输出执行sql语句,方便调试

标签:

原文地址:http://www.cnblogs.com/xlz307/p/4202847.html

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