最后在cakephp中生成id手动查询

时间:2014-08-04 11:22:36

标签: cakephp

我已在cakephp中应用手动查询而不是最后生成id

我的查询是

$areas = $this->Area->query("insert into  areas (Area_ID,Parent_Area_ID,Area) values ('','".$Parent_Area_ID."','".$Area_name."')");

我如何得到最后一个身份?

2 个答案:

答案 0 :(得分:0)

试试这个

echo $this->Area->getLastInsertID();

如果这不起作用,请查看类似问题中的this answer

答案 1 :(得分:0)

试试这段代码:

$this->Area->getInsertID();

这里有更多细节:
http://book.cakephp.org/2.0/en/models/additional-methods-and-properties.html#model-getinsertid