clearLimit method
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;
}
Clears the LIMIT clause from the query.
Returns this
to enable method chaining.
Example:
query.clearLimit(); // Removes LIMIT and OFFSET
Sqler clearLimit() {
_limit = Limit();
return this;
}