具有多个索引的CodeIgniter更新批处理

时间:2013-07-11 04:46:18

标签: codeigniter activerecord batch-updates

我在CodeIgniter上遇到活动记录更新批处理问题。

在文档上,

$this->db->update_batch('mytable', $data, 'title');

其中'title'是更新过程的索引。是否可以为此活动记录提供两个或更多索引? 我已经尝试了

$this->db->update_batch('mytable', $data, 'title, title_2');
$this->db->update_batch('mytable', $data, array('title', 'title_2');

它没有用。

0 个答案:

没有答案