Dibi\Result::getInfo PHP Method

getInfo() public method

Returns a meta information about the current result set.
public getInfo ( ) : Dibi\Reflection\Result
return Dibi\Reflection\Result
    public function getInfo()
    {
        if ($this->meta === NULL) {
            $this->meta = new Reflection\Result($this->getResultDriver());
        }
        return $this->meta;
    }