<i id='l5HL6'><tr id='l5HL6'><dt id='l5HL6'><q id='l5HL6'><span id='l5HL6'><b id='l5HL6'><form id='l5HL6'><ins id='l5HL6'></ins><ul id='l5HL6'></ul><sub id='l5HL6'></sub></form><legend id='l5HL6'></legend><bdo id='l5HL6'><pre id='l5HL6'><center id='l5HL6'></center></pre></bdo></b><th id='l5HL6'></th></span></q></dt></tr></i><div id='l5HL6'><tfoot id='l5HL6'></tfoot><dl id='l5HL6'><fieldset id='l5HL6'></fieldset></dl></div>
    • <bdo id='l5HL6'></bdo><ul id='l5HL6'></ul>
  1. <legend id='l5HL6'><style id='l5HL6'><dir id='l5HL6'><q id='l5HL6'></q></dir></style></legend><tfoot id='l5HL6'></tfoot>

    <small id='l5HL6'></small><noframes id='l5HL6'>

    1. Yii - 如何打印 findAll 使用的 SQL

      Yii - How to print SQL used by findAll(Yii - 如何打印 findAll 使用的 SQL)

            <tbody id='RbZvw'></tbody>
            <bdo id='RbZvw'></bdo><ul id='RbZvw'></ul>

            <i id='RbZvw'><tr id='RbZvw'><dt id='RbZvw'><q id='RbZvw'><span id='RbZvw'><b id='RbZvw'><form id='RbZvw'><ins id='RbZvw'></ins><ul id='RbZvw'></ul><sub id='RbZvw'></sub></form><legend id='RbZvw'></legend><bdo id='RbZvw'><pre id='RbZvw'><center id='RbZvw'></center></pre></bdo></b><th id='RbZvw'></th></span></q></dt></tr></i><div id='RbZvw'><tfoot id='RbZvw'></tfoot><dl id='RbZvw'><fieldset id='RbZvw'></fieldset></dl></div>

            1. <legend id='RbZvw'><style id='RbZvw'><dir id='RbZvw'><q id='RbZvw'></q></dir></style></legend>

                <small id='RbZvw'></small><noframes id='RbZvw'>

              • <tfoot id='RbZvw'></tfoot>
              • 本文介绍了Yii - 如何打印 findAll 使用的 SQL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我有以下代码可以从数据库中获取一些记录

                I have the following code to get some records from db

                    $criteria = new CDbCriteria();
                    $criteria->condition = 't.date BETWEEN "'.$from_date.'" AND "'.$to_date.'"';
                    $criteria->with = array('order');
                
                    $orders = ProductOrder::model()->findAll($criteria);
                

                是否可以获取findAll使用的SQL?我知道您可以从调试控制台获取它.但是我在后台使用 yiic.php 运行脚本

                Is it possible to get the SQL that is used by the findAll? I know you can get it from the debug console. But I'm running the script in the background using yiic.php

                推荐答案

                您可以在应用程序日志中记录已执行的查询并进行查看.在配置文件中是这样的:

                You can log the executed queries in the application log and review that. Something like this in the config file:

                'components' => array(
                  'db'=>array(
                    'enableParamLogging' => true,
                  ),
                  'log'=>array(
                    'class'=>'CLogRouter',
                    'routes'=>array( 
                      array(
                        'class'=>'CFileLogRoute',
                        'levels'=>'trace,log',
                        'categories' => 'system.db.CDbCommand',
                        'logFile' => 'db.log',
                      ), 
                    ),
                  ),
                );
                

                在某些情况下(例如运行测试时),您还需要在流程结束时调用 Yii::app()->log->processLogs(null);使其工作.

                In some cases (e.g. when running tests), you will also need to call Yii::app()->log->processLogs(null); at the end of the process for this to work.

                当然,一旦你到达那里,就没有什么能阻止你编写自己的日志路由,对记录的消息做一些不同的事情,但请注意,日志是在请求结束时处理的(或者当你调用 processLogs),而不是每次都记录一些东西.

                Of course, once you're there nothing's stopping you from writing your own log route that does something different with the logged messages, but mind that the logs are processed at the end of the request (or when you call processLogs), not every time you log something.

                顺便说一句,您不应该构建这样的查询,在查询中使用动态输入.改用绑定变量:

                By the way, you should not build queries like that, with dynamic input right in the query. Use bind variables instead:

                $criteria = new CDbCriteria();
                $criteria->condition = 't.date BETWEEN :from_date AND :to_date';
                $criteria->params = array(
                  ':from_date' => $from_date,
                  ':to_date' => $to_date,
                );
                $criteria->with = array('order');
                
                $orders = ProductOrder::model()->findAll($criteria);
                

                这篇关于Yii - 如何打印 findAll 使用的 SQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Is PHP or PHP based web framework stateful or stateless?(PHP 或基于 PHP 的 Web 框架是有状态的还是无状态的?)
                How to parse django style template tags(如何解析 django 样式模板标签)
                What is a good setup for editing PHP in Emacs?(在 Emacs 中编辑 PHP 的好设置是什么?)
                How to check whether specified PID is currently running without invoking ps from PHP?(如何在不从 PHP 调用 ps 的情况下检查指定的 PID 当前是否正在运行?)
                What#39;s the difference between escapeshellarg and escapeshellcmd?(escapeshellarg 和escapeshellcmd 有什么区别?)
                php in background exec() function(php 后台 exec() 函数)
                  <legend id='wiAu2'><style id='wiAu2'><dir id='wiAu2'><q id='wiAu2'></q></dir></style></legend>
                  <i id='wiAu2'><tr id='wiAu2'><dt id='wiAu2'><q id='wiAu2'><span id='wiAu2'><b id='wiAu2'><form id='wiAu2'><ins id='wiAu2'></ins><ul id='wiAu2'></ul><sub id='wiAu2'></sub></form><legend id='wiAu2'></legend><bdo id='wiAu2'><pre id='wiAu2'><center id='wiAu2'></center></pre></bdo></b><th id='wiAu2'></th></span></q></dt></tr></i><div id='wiAu2'><tfoot id='wiAu2'></tfoot><dl id='wiAu2'><fieldset id='wiAu2'></fieldset></dl></div>

                          <bdo id='wiAu2'></bdo><ul id='wiAu2'></ul>
                            <tbody id='wiAu2'></tbody>
                          <tfoot id='wiAu2'></tfoot>

                          <small id='wiAu2'></small><noframes id='wiAu2'>