updateSQL method
Implementation
FutureOr<dynamic> updateSQL(
TransactionOperation op,
String entityName,
String table,
SQL sql,
Object id,
Map<String, Object?> fields, {
bool allowAutoInsert = false,
}) {
if (sql.isDummy) return id;
return executeTransactionOperation(op, sql, (connection) {
_logTransactionOperationSQL('updateSQL', op, sql);
return doUpdateSQL(
entityName,
table,
sql,
id,
op.transaction,
connection,
allowAutoInsert: allowAutoInsert,
);
});
}