/**
  * Check whether the current transaction is marked for rollback only.
  *
  * @return boolean
  * @throws Doctrine\DBAL\ConnectionException If no transaction is active.
  */
 public function isRollbackOnly()
 {
     return $this->_conn->isRollbackOnly();
 }