如何在调用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()
怎么样?