clearUpdate method
Clears all UPDATE field-value pairs from the query.
Returns this to enable method chaining.
Example:
query.clearUpdate(); // Removes all UPDATE SET clauses
Implementation
Sqler clearUpdate() {
_update = {};
return this;
}
Clears all UPDATE field-value pairs from the query.
Returns this to enable method chaining.
Example:
query.clearUpdate(); // Removes all UPDATE SET clauses
Sqler clearUpdate() {
_update = {};
return this;
}