获取上次更新记录的ID

时间:2013-12-01 08:35:31

标签: php codeigniter activerecord codeigniter-2

我能够在codeigniter中使用$this->db->insert_id();获取最后插入的id,有没有办法可以获取上次更新记录的id?我尝试使用相同的$this->db->insert_id();,但它不起作用(返回0)。

6 个答案:

答案 0 :(得分:6)

Codeigniter并不支持。我不得不这样做:

$updated_id = 0;

// get the record that you want to update
$this->db->where(array('vrnoa'=>$data['vrnoa'], 'etype' => 'sale'));
$query = $this->db->get('StockMain');

// getting the Id
$result = $query->result_array();
$updated_id = $result[0]['stid'];

// updating the record
$this->db->where(array('vrnoa'=>$data['vrnoa'], 'etype' => 'sale'));
$this->db->update('StockMain',$data);

答案 1 :(得分:4)

$this->db->insert_id();  

这将只提供插入的ID。要获取更新的行ID,可以将列添加为lastmodified(timestamp),并在每次运行更新查询时使用当前时间戳更新此列。更新后的查询只需运行:

$query = $this->db->query('SELECT id FROM StockMain ORDER BY lastmodified DESC LIMIT 1');  
$result = $query->result_array();  

您将在结果集中获得id。

答案 2 :(得分:2)

以下是如何做到最短的

$where  =   array('vrnoa'=>$data['vrnoa'], 'etype' => 'sale');

//更新记录

$this->db->where($where);
$this->db->update('StockMain',$data);

//获取记录

$this->db->where($where);
return $this->db->get('StockMain')->row()->stid;

答案 3 :(得分:0)

使用codeigniter,MY_MODEL是扩展版本。这是我获得relfe的瓶颈之一。

  function update_by($where = array(),$data=array())
  {
        $this->db->where($where);
        $query = $this->db->update($this->_table,$data);
        return $this->db->get($this->_table)->row()->id; //id must be exactly the name of your table primary key
  }

调用此更新并获取更新的ID。有点矫枉过正,我猜两次运行查询,但所有上述情况也是如此。

你怎么打电话?

 $where = array('ABC_id'=>5,'DEF_ID'=>6);
 $data =  array('status'=>'ACCEPT','seen_status' =>'SEEN');
 $updated_id= $this->friends->update_by($where,$data);

答案 4 :(得分:0)

返回您在where子句中使用的id以进行更新

function Update($data,$id){
        $this->db->where('id', $id);
        $this->db->update('update_tbl',$data);
        return $id; 
    }

答案 5 :(得分:0)

尝试这样:

  //update
    public function update($table, $where, $data)
    {
        // get the record that you want to update
        $this->db->where($where);
        $query = $this->db->get($table);

        // getting the Id
        $row = array_values($query->row_array());
        $updated_id = $row[0];

        // updating the record
        $updated_status = $this->db->update($table, $data, $where);

        if($updated_status):
            return $updated_id;
        else:
            return false;
        endif;
    }