/** * Sets limit clause, more calls rewrite old values. * @param int * @param int * @return TableSelection provides a fluent interface */ public function limit($limit, $offset = NULL) { $this->emptyResultSet(); $this->sqlBuilder->setLimit($limit, $offset); return $this; }