Zend 2 db transactions?

前端 未结 2 870
遇见更好的自我
遇见更好的自我 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

    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();
    
    0 讨论(0)
  • 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
    
    0 讨论(0)
提交回复
热议问题