Is it possible to use SQL Transactions within a workflow?
It appears that the database connection is reset with each SQL call, so we are unable to issue a COMMIT or ROLLBACK as they are not valid.
Background:
We are trying to update some tables and would like to be able to delete all of the records and then insert the new ones as they can change frequently. If there is a problem, we want to rollback and not delete the old records.
Perhaps there is some way to indicate the database connection should be held?