Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a custom function to fetch last insert id in zend framework



Write a custom function to fetch last insert id in zend framework..

Answer / Sandeep Aswal

In Zend Framework, you can use the `Zend_Db_Adapter` class to create a database adapter and write a custom function to fetch the last inserted ID.nHere's an example of how to do it:nn```phpnpublic function getLastInsertId() {n $lastInsertId = null;n try {n $this->getDb()->lastInsertId($this->_name);n $lastInsertId = $this->getDb()->getLastGeneratedValue("ID");n } catch (Exception $e) {n // Handle the exception heren }n return $lastInsertId;n}n```nThis function assumes that you have a database table named `$this->_name` and the primary key is named `ID`.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Zend Interview Questions

How to set up 2 navigations in zend framework 2?

1 Answers  


Do you know what is zend engine?

1 Answers  


How do you define the library path in zend ?

1 Answers  


What are the difference between zend_registry and zend_session?

1 Answers  


What do you mean by service manager in zend framework 2?

1 Answers  


How to log out users using facebook connect in php and zend?

1 Answers  


How to include css and js from the controller in the zend framework?

1 Answers  


What is event manager in zend framework?

1 Answers  


How can I detect if an optional file has been uploaded?

1 Answers  


Explain the difference between zend_registry and zend_session in zend?

1 Answers  


What is zend engine in php?

1 Answers  


What do you know about zend layout?

1 Answers  


Categories