I am working on query database and write the value, but the situation is,
when I use the “Execute Query” activity, there is property “ContinueOnError”, it is set as “True” so that even error happens the process can continue.
But the problem is, I would like to have the error been highlighted as a strange value so I can identify it immediately, but this activity did not provide this function, any handy idea to do this?
but as the official web said
" If this activity is included in Try Catch and the value of the ContinueOnError property is True, no error is caught when the project is executed."
Thanks for the help, problem solved, I add another execute query to give a dummy initial value for every result I required, then if the real execute query get the right value, it will be overwrote, if error, it will be dummy value/empty.