update method

Future<QueryResult> update({
  1. required List<ColumnValue<Object>> values,
  2. required Where where,
  3. Returning? returning,
  4. SQLExecutor? executor,
})

Implementation

Future<QueryResult> update({required List<ColumnValue> values, required Where where, Returning? returning, SQLExecutor? executor}) async {
  return await (executor ?? defaultExecutor).update(tableName, values: values, where: where, returning: returning);
}