db_pdo::rollback PHP Method

rollback() public method

事务回滚
public rollback ( ) : boolen
return boolen
    public function rollback()
    {
        if ($this->transTimes > 0) {
            $result = $this->_linkID->rollback();
            $this->transTimes = 0;
            if (!$result) {
                $this->error();
                return false;
            }
        }
        return true;
    }