Reputation: 9645
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
Reputation: 12853
lastInsertId is a method of the adapter.
$id = $this->getAdapter()->lastInsertId($stuff);
Upvotes: 1