The ZF1 Zend_Db reference manual has an entire section on performing transactions.
The ZF2 Zend\Db reference manual lacks any documentation on transactions.
How do I perform transactions in ZF2? Example code would be helpful.
|
The ZF1 Zend_Db reference manual has an entire section on performing transactions. The ZF2 Zend\Db reference manual lacks any documentation on transactions. How do I perform transactions in ZF2? Example code would be helpful. |
||||
|
|
|
The missing documentation is curious. To find out what happened, I had to dive into the API docs for Zend\Db\Adapter. It looks like What I'm not clear on -- and can't provide an example for at this time -- is figuring out which object you actually call these methods on. In the worst case, it looks like you might want to call Eww. I'm hoping someone else with more knowledge, and a copy of ZF2 handy, will see this and provide a better option. Don't forget that you can just issue |
|||
|
|
You've got it. The proper way to Begin, Commit, and Rollback Transactions is as follows:
Just to put this out there too you can also get the Last ID created by:
If you are using pgSQL you will need to add the sequence to return the Last ID created:
|
||||
|
|