Hi, Just curious whether it is reliable way to do following: I need to get some value and then update it, optimally in one batch.
SELECT X FROM Y //will it be returned if executed in one batch?
UPDATE Y SET X...
Executed as Reader? I am not sure whether it will return if there is the UPDATE statetement. And one extra question, what if I needed to return true or false (or any other pair of values) depending on whether or notsome statement succeed?