Somebody
Somebody

Reputation: 9645

Getting lastInsertId from model extended by Zend_Db_Table_Abstract

Tried to get it that way inside extended model:

$this->lastInsertId();

and getting this error:

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

Data is added successfully to the database, but i can't get auto_incremented key.

Upvotes: 0

Views: 856

Answers (1)

Iznogood
Iznogood

Reputation: 12853

lastInsertId is a method of the adapter.

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

Upvotes: 1

Related Questions