clearUpdate method

Sqler clearUpdate()

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;
}