I am trying to make a multiple-row update in Codeigniter. I am getting an error:
A Database Error Occurred
One or more rows submitted for batch updating is missing the specified index.
I think the problem is within the model. I am putting the model function below please help me fix what I am doing wrong.
public function updateContacts($client_id){
$data = array(
array('address' => 'My address' ,
'name' => 'My Name 2' ,
),
array('address' => 'Another address' ,
'name' => 'Another Name 2' ,
)
);
$multipleWhere = ['tbl_contact.owner_id' => $client_id, 'tbl_contact.owner_type' => '3'];
$this->db->update_batch('tbl_contact', $data, $multipleWhere);
}