clearParams method
Clears all parameters from the query.
Returns this
to enable method chaining.
Example:
query.clearParams(); // Removes all named parameters
Implementation
Sqler clearParams() {
_params = {};
return this;
}
Clears all parameters from the query.
Returns this
to enable method chaining.
Example:
query.clearParams(); // Removes all named parameters
Sqler clearParams() {
_params = {};
return this;
}