我将codeigniter与下面的我的\u模型一起使用:https://github.com/jamierumbelow/codeigniter-base-model我想查看执行的更新查询,这是我的代码:
$this->user_model->update(1,['username'=>'user']); var_dump($this->db->last_query());
但是第二行总是返回false。
xdnvmnnf1#
请在数据库配置中打开db debug,并将项目环境设置为 development 在 index.php 应用程序/config/database.php
development
index.php
$db['test']['db_debug'] = TRUE;
这可能有帮助:)
1wnzp6jl2#
查询从未执行。因为验证出错。
2条答案
按热度按时间xdnvmnnf1#
请在数据库配置中打开db debug,并将项目环境设置为
development
在index.php
应用程序/config/database.php这可能有帮助:)
1wnzp6jl2#
查询从未执行。因为验证出错。