172

我有一个插入查询(活动记录样式),用于将表单字段插入 MySQL 表。我想获取插入操作的最后一个自动递增的 id 作为查询的返回值,但我遇到了一些问题。

控制器内部:

function add_post(){
    $post_data = array(
        'id'            => '',
        'user_id'   =>  '11330',
        'content'   =>  $this->input->post('poster_textarea'),
        'date_time' => date("Y-m-d H:i:s"),
        'status'        =>  '1'
    );
    return $this->blog_model->add_post($post_data);
}

和内部模型:

function add_post($post_data){
    $this->db->trans_start();
    $this->db->insert('posts',$post_data);
    $this->db->trans_complete();
    return $this->db->insert_id();
}

作为模型中 add_post 的返回,我什么也没得到

4

10 回答 10

310

尝试这个

function add_post($post_data){
   $this->db->insert('posts', $post_data);
   $insert_id = $this->db->insert_id();

   return  $insert_id;
}

如果有多个插入,您可以使用

$this->db->trans_start();
$this->db->trans_complete();
于 2013-05-08T12:15:11.540 回答
69

这里不需要事务,这应该足够了:

function add_post($post_data) {
    $this->db->insert('posts',$post_data);
    return $this->db->insert_id();
}
于 2013-05-08T12:55:35.007 回答
29
$id = $this->db->insert_id();
于 2013-05-08T12:22:12.253 回答
10

文档中:

$this->db->insert_id()

执行数据库插入时的插入 ID 号。

因此,您可以使用以下内容:

$lastid = $this->db->insert_id();
于 2015-04-26T10:59:51.283 回答
3

使用mysqli PHP驱动,提交后无法获取insert_id。

真正的解决方案是这样的:

function add_post($post_data){
  $this->db->trans_begin();
  $this->db->insert('posts',$post_data);

  $item_id = $this->db->insert_id();

  if( $this->db->trans_status() === FALSE )
  {
    $this->db->trans_rollback();
    return( 0 );
  }
  else
  {
    $this->db->trans_commit();
    return( $item_id );
  }
}

代码结构来源:https ://codeigniter.com/user_guide/database/transactions.html#running-transactions-manually

于 2019-10-03T20:10:19.267 回答
1

值得一提的是,其他答案与 Codeigniter 第 3 版有关。第 4 版(找到https://codeigniter.com/user_guide/database/helpers.html)中的答案是使用$this->db->insertID()

于 2021-07-06T14:45:04.210 回答
0

只是为了完成这个主题:如果您使用主键和自动增量设置表,您可以省略手动增加 id 的过程。

看看这个例子

if (!$CI->db->table_exists(db_prefix() . 'my_table_name')) {
    $CI->db->query('CREATE TABLE `' . db_prefix() . "my_table_name` (
  `serviceid` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `hash` varchar(32) NOT NULL,
  `url` varchar(120) NOT NULL,
  `datecreated` datetime NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=" . $CI->db->char_set . ';');

现在您可以插入行

$this->db->insert(db_prefix(). 'my_table_name', [
            'name'         => $data['name'],
            'hash'            => app_generate_hash(),
            'url'     => $data['url'],
            'datecreated'     => date('Y-m-d H:i:s'),
            'active'          => $data['active']
        ]);
于 2019-06-17T14:12:22.813 回答
0

因为你已经在数据插入上发起了事务,所以,首先检查事务完成与否。一旦启动事务,就应该根据事务的状态来提交或回滚;

function add_post($post_data){
  $this->db->trans_begin() 
  $this->db->insert('posts',$post_data);
  $this->db->trans_complete();
  if ($this->db->trans_status() === FALSE){
    $this->db->trans_rollback();
    return 0;
  }else{
    $this->db->trans_commit();
    return $this->db->insert_id();
  }
}``

在上面,我们已经提交了成功交易的数据,即使你得到了时间戳

于 2019-04-22T03:21:42.160 回答
0
**Inside Model**
function add_info($data){
   $this->db->insert('tbl_user_info',$data);
   $last_id = $this->db->insert_id();
   return  $last_id;
}

**Inside Controller**
public function save_user_record() {
  $insertId =  $this->welcome_model->save_user_info($data);
  echo $insertId->id;
}
于 2019-09-18T17:11:16.487 回答
-1

你必须使用$lastId = $this->db->insert_id();

于 2017-12-14T05:55:35.100 回答