I am inserting a series of rows with roll back option if any error occurs.
BEGIN TRY
BEGIN TRANSACTION
INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
COMMIT TRAN -- Transaction Success!
END TRY
BEGIN CATCH
IF @@TRANCOUNT > 0
ROLLBACK TRAN --RollBack
END CATCH
in C#, i am inserting rows in for loop. Is it possible to attain the same feature here also?
foreach(string lst in str[])
{
//insert query
dbl.ExecSqlNonQuery("sp_tbltest", CommandType.StoredProcedure);
}
if any error occurs in loop, all rows shoud roll back.
SET XACT_ABORT ONwould change your code. – ta.speot.is Jan 19 at 7:50