如何在codeigniter模型中打印SQL语句 [英] How to print SQL statement in codeigniter model

查看:334
本文介绍了如何在codeigniter模型中打印SQL语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的模型中有一个sql语句,

I have a sql statement in my model,

然后我说

$query = $this->db->query($sql, array(fields, fields1);

if ($query) {
    return true:
} else {
    echo "failed";
    return false;
}


b $ b

我的查询总是失败,我如何得到php打印发送到我的数据库的确切的sql语句?并显示在我的php视图,页

My query always fails, how do I get php to print the exact sql statement being sent to my database? And display that on my php view, page

推荐答案

print_r($query);


b $ b

您还可以使用(在视图中),您将看到以下SQL语句:

You can also use (in view) and you will see the SQL statement:

$this->output->enable_profiler(TRUE);

分析用户指南:
http://ellislab.com/codeigniter/user-guide/general/profiling.html

这篇关于如何在codeigniter模型中打印SQL语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆