CodeIgniter activerecord,检索最后插入的id? [英] CodeIgniter activerecord, retrieve last insert id?

查看:37
本文介绍了CodeIgniter activerecord,检索最后插入的id?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有任何选项可以在 CodeIgniter 中获取新记录的最后一个插入 id?

Are there any options to get the last insert id of a new record in CodeIgniter?

$last_id = $this->db->insert('tablename',
    array('firstcolumn' => 'value',
    'secondcolumn' => 'value')
);

考虑到表包含字段 id(自动增量)firstcolumn 和 secondcolumn.

Considering the table consits of fields id (autoincrement) firstcolumn and secondcolumn.

这样你就可以在下面的代码中使用插入id了.

This way you can use the insert id in the following code.

推荐答案

真丢人...

我查看了用户指南和第一个函数是 $this->db->insert_id();

I looked at the user guide and the first function is $this->db->insert_id();

这也适用于活动记录插入...

This also works with activerecord inserts...

我更新了链接

这篇关于CodeIgniter activerecord,检索最后插入的id?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆