Codeigniter批量更新会引发有关索引的错误

时间:2012-09-02 19:45:33

标签: php sql codeigniter sql-update

codigniter中的以下代码给出了更新数组的错误:

$query="UPDATE sell_rate SET price='$price' WHERE code='$code'";
                $this->db->query($query);

错误是:

  

您必须指定与批量更新相匹配的索引

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

试试这段代码

$ options = array('price'=> $ price);
      $ this-> db-> where('code',$ code);
      $ this-> db-> update('sell_rate',$ options);