Illuminate\Database\Query\Builder::cursor PHP 메소드

cursor() 공개 메소드

Get a generator for the given query.
public cursor ( ) : Generator
리턴 Generator
    public function cursor()
    {
        if (is_null($this->columns)) {
            $this->columns = ['*'];
        }
        return $this->connection->cursor($this->toSql(), $this->getBindings(), !$this->useWritePdo);
    }