@ralf said in SQL Data Source Insert and Update rows:
INSERT INTO table_xz (
IDNr, StartSum, StartTemp, ValveNr, LineNr, StartTime)
VALUES (?,?,?,'KS0717','B',NOW())
I know you can extend the insert query by just adding another batch of values after in brackets.
INSERT INTO table_xz (
IDNr, StartSum, StartTemp, ValveNr, LineNr, StartTime)
VALUES (?,?,?,'KS0717','B',NOW()),(?,?,?,'KS0717','B',NOW())
You may need to insert the actual values though.