Zend 2 db transactions?

前端 未结 2 869
遇见更好的自我
遇见更好的自我 2021-02-09 09:01

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

2条回答
  •  情深已故
    2021-02-09 09:21

    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
    

提交回复
热议问题