in the following code, if cmd1 and cmd2 passed with cmd3 failing. do c# abort all block (try block) ?, or continue executing cmd1 and cmd2 ?.
try
{
sqlConnection1.Open();
cmd1.ExecuteNonQuery();
cmd2.ExecuteNonQuery();
cmd3.ExecuteNonQuery();
}
catch (Exception ex)
{
MessageBox.Show("An error occured " + ex.Message);
}
finally
{
sqlConnection1.Close();
}