如何清除"只有"在触发更新调用之前,codeigniter中的最后一个db活动记录选择查询?

时间:2016-09-21 03:09:45

标签: php codeigniter codeigniter-3

如何在调用db update call之前清除codeigniter中的最后一个select查询? 目前,发生了什么,我必须做一个select查询,然后使用相同的db表进行更新查询。现在的问题是,我得到了这种类型的错误,看起来我的更新调用中正在读取select *

我尝试使用

$this->db->flush_cache() //didnt' helped

OR

$this->db->stop_cache() //didn't helped

OR

$this->db->free_result() //didn't helped

OR

$this->db->reset() // didn't helped

OR

$this->db->_reset_select()

怎么样?

0 个答案:

没有答案