/**
  * Marks the current transaction so that the only possible
  * outcome for the transaction is to be rolled back.
  *
  * @throws Doctrine\DBAL\ConnectionException If no transaction is active.
  */
 public function setRollbackOnly()
 {
     $this->_conn->setRollbackOnly();
 }