codigniter中的以下代码给出了更新数组的错误:
$query="UPDATE sell_rate SET price='$price' WHERE code='$code'";
$this->db->query($query);
错误是:
您必须指定与批量更新相匹配的索引
请帮我解决这个问题。
答案 0 :(得分:0)
试试这段代码
$ options = array('price'=> $ price);
$ this-> db-> where('code',$ code);
$ this-> db-> update('sell_rate',$ options);