db_mysqli::free PHP Method

free() public method

释放查询结果
public free ( )
    public function free()
    {
        if (is_object($this->queryID)) {
            $this->queryID->free_result();
        }
        $this->queryID = null;
    }