Dibi\Result::getResultDriver PHP Method

getResultDriver() final public method

Safe access to property $driver.
final public getResultDriver ( ) : dibi\ResultDriver
return dibi\ResultDriver
    public final function getResultDriver()
    {
        if ($this->driver === NULL) {
            throw new \RuntimeException('Result-set was released from memory.');
        }
        return $this->driver;
    }