从Zend_Db_Table_Abstract扩展的模型中获取lastInsertId

时间:2010-08-19 16:28:12

标签: zend-framework

试图在扩展模型中使用它:

$this->lastInsertId();

并收到此错误:

Fatal error: Call to undefined method InsertAd::lastInsertId()

数据已成功添加到数据库,但我无法获得auto_incremented密钥。

1 个答案:

答案 0 :(得分:1)

lastInsertId是适配器的一种方法。

$id = $this->getAdapter()->lastInsertId($stuff);