yii\db\DataReader::nextResult PHP 메소드

nextResult() 공개 메소드

This method is only useful when there are multiple result sets returned by the query. Not all DBMS support this feature.
public nextResult ( ) : boolean
리턴 boolean Returns true on success or false on failure.
    public function nextResult()
    {
        if (($result = $this->_statement->nextRowset()) !== false) {
            $this->_index = -1;
        }
        return $result;
    }