How to return primary key of last inserted record (ID) generated in the last query, like LAST_INSERT_ID() in MySQL or mysql_insert_id() in PHP
echo (int)$this->ModelName->getLastInsertID();
No need to explain more, right? 😉
How to return primary key of last inserted record (ID) generated in the last query, like LAST_INSERT_ID() in MySQL or mysql_insert_id() in PHP
echo (int)$this->ModelName->getLastInsertID();
No need to explain more, right? 😉