Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithYou need to use the DbExecute node and the sqlNonSelect operator.
Look at the documentation for sqlNonSelect, but a simple example would be:
Query = "update mytable set name=:1 where id=:2"
sqlNonSelect(Query,'Name','Id')
One note: the parameter numbers above (:1 :2 :3 etc) MUST be in sequential order. It won't work if you try :1 :3 :2 or :1 :1 :2