How do we use transactions in Zend 2? I didn't find anything in the API, and a couple questions for Zend 1 refered to the regular PDO functions, but I don't see anything like that in Zend 2.
The documentation is lacking a bit in this department for ZF2:
Start Transaction:
$this->adapter->getDriver()->getConnection()->beginTransaction();
Commit Transaction:
$this->adapter->getDriver()->getConnection()->commit();
Rollback Transaction:
$this->adapter->getDriver()->getConnection()->rollback();
Try this:
$adapter = new Zend\Db\Adapter\Adapter(array(
'driver' => 'pdo',
'dsn' => 'mysql:dbname=db;hostname=localhost',
'username' => 'root',
'password' => 'password',
'driver_options' => array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
),
));
$adapter->getDriver()->getConnection()->beginTransaction();
DB will run command:
START TRANSACTION
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With