本文介绍了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(autoincrement)第一列和第二列的表consits。
Considering the table consits of fields id (autoincrement) firstcolumn and secondcolumn.
这样你可以在下面的代码中使用insert 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();
这也适用于activerecord插入...
This also works with activerecord inserts...
编辑:我更新了链接
这篇关于CodeIgniter activerecord,检索最后一个插入ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!