Prado\Data\TDbDataReader::readObject PHP 메소드

readObject() 공개 메소드

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