Drivers\Abstraction\Sql::limit PHP 메소드

limit() 공개 메소드

.. LIMIT ..." statement.
public limit ( $limit, $offset = null ) : object
리턴 object
    public function limit($limit, $offset = null)
    {
        $this->limit = $limit;
        $this->offset = $offset;
        return $this;
    }