Function: executeUpdateQuery()
function executeUpdateQuery(args: {
db: Database;
monitorId: string;
updateFields: string[];
updateValues: DbValue[];
}): void;
Defined in: electron/services/database/MonitorRepository.updateUtils.ts:133
Executes a monitor UPDATE query.
Parameters
args
db
monitorId
string
updateFields
string[]
updateValues
DbValue[]
Returns
void
Remarks
updateFields must be generated by app code (not user input). All runtime
values are still bound as SQL parameters.