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
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