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