/** * @see Yun_Db_Adapter_Interface::rollback() */ public function rollback() { if (null === $this->pdo) { return false; } $re = $this->pdo->rollback(); if (false === $re) { $this->setPdoError(); } return $re; }