2

我的控制器正在调用模型更新函数:

function update_customer_records( $id, $data )
{
    $this->db->where( 'id', $id );
    $this->db->update( 'customers', $data );
}

我只是在更新我的桌子。如果更新失败,例如重复客户名称 [唯一字段] 我想将 flashdata 发送回用户$this->session->set_flashdata('dbaction', 'Update Failed, possible duplicate Customer Name. Please try again or contact the administrator');

所以是这样的:

function update_customer_records( $id, $data )
{
    $this->db->where( 'id', $id );
    $this->db->update( 'customers', $data );

    if(update fails){
    $this->session->set_flashdata('dbaction', 'Update Failed, possible duplicate Customer. Please try again or contact the administrator');
    redirect('masterdata/create_customer', 'refresh');
    } else
    {
    $this->session->set_flashdata('dbaction', 'Update Successful');
    redirect('masterdata/create_customer', 'refresh');  
    }
}

这是可以接受的还是有更好的方法来处理这个问题?

预先感谢,一如既往。

4

2 回答 2

4

你可以用这个。如果受更新影响的行大于 1,则返回 true,否则返回 false

function update_customer_records( $id, $data)
{
    $this->db->where( 'id', $id );
    $this->db->update( 'customers', $data );

     //if affected rows > 0 reutrn true else false
    return $this->db->affected_rows() > 0 ? TRUE : FALSE;
}

然后在您的控制器上,您可以将其用作

if($this->model->update_customer_records() == FALSE)
{
   // set the flashdata here

}else{

  // do what you want if update is successful
}
于 2013-03-04T07:32:17.840 回答
1

您可以在模型中使用它:

function update_customer_records( $id, $data ) {    
            $this->db->where( 'id', $id );
            if($this->db->update( 'customers', $data ))
              return true;
            else
              return false;
        }



function is_exist($customer_name)
    {
        $query = $this->db->get_where($customers, array('customer_name' => $customer_name), 1);
        if ($query->num_rows() > 0)
            return false;
        else
           return true; 
    }

并在控制器中使用:

if($this->model->is_exist($customer_name)
    {
        $this->db->update_customer_records( $id, $data ); 
        $this->session->set_flashdata('dbaction', 'Update Successful');
    }
else
   {
       $this->session->set_flashdata('dbaction', 'Update Failed, possible duplicate  
       Customer. Please try again or contact the administrator');     
    }
    redirect('masterdata/create_customer', 'refresh'); 
于 2013-03-04T07:31:01.493 回答