clearLimit method

Sqler clearLimit()

Clears the LIMIT clause from the query.

Returns this to enable method chaining.

Example:

query.clearLimit(); // Removes LIMIT and OFFSET

Implementation

Sqler clearLimit() {
  _limit = Limit();
  return this;
}