Is it possible to add multiple queries to the SqlCommand object in .net?
And if one of the queries fails and the rest succeeds, does the command report this as a failure or succes?
last question: can the queries share the same parameters? So, is this possible:
UPDATE mytable
SET column1 = @param1
WHERE recid = @recid;
UPDATE mytable2
SET column1 = @param1
WHERE recid = @recid2;
(so the param1 is shared between the queries)
thanks!
R