Prado\Data\TDbDataReader::readObject PHP Method

readObject() public method

Returns a single column from the next row of a result set.
public readObject ( $className, $fields ) : mixed | false
return mixed | false the populated object, false if no more row of data available
    public function readObject($className, $fields)
    {
        return $this->_statement->fetchObject($className, $fields);
    }