0

如何使用活动记录更新多行?

我的阵列

foreach($services as $service){

        $this->service_batch[]=array(
            'service_id'=>$service->service_id,
            'service_count'=>$service->service_count,
            'id_customer'=>$service->id_customer,
            'id_section'=>$service->id_section);
        }

当我更新表格时,我需要在WHERE子句中定义 2 个参数(id_customer AND id_section),但如果我使用update_batch,我只能指定一个参数。如何在WHERE子句中设置一些参数?

4

2 回答 2

1

来自Code Igniter 文档的类似内容 - 请参阅更新批次:-

 $data = array(
   array(
      'title' => 'My title' ,
      'name' => 'My Name 2' ,
      'date' => 'My date 2'
   ),
   array(
      'title' => 'Another title' ,
      'name' => 'Another Name 2' ,
      'date' => 'Another date 2'
   )
);

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

在您的情况下,数据将被您所需的列替换$this->service_batch并标题。

于 2013-08-01T14:44:38.067 回答
0

不太确定是否能找到您真正需要的东西,但我会这样做:

//controller

foreach($services as $service){

        $this->model->update(
          $service->service_id,
          array(
            'service_count'=>$service->service_count,
            'id_customer'=>$service->id_customer,
            'id_section'=>$service->id_section
          ));
        }

//model


 function update($id,$data){

    $this->db->where('id',$id);
    return  $this->db->update('my_table',$data);

}
于 2013-08-02T12:57:33.450 回答