Chỉ cần thay đổi SqlCommand.CommandText
thay vì tạo một SqlCommand
mới mỗi lần. Không cần phải đóng và mở lại kết nối.
// Create the first command and execute
var command = new SqlCommand("<SQL Command>", myConnection);
var reader = command.ExecuteReader();
// Change the SQL Command and execute
command.CommandText = "<New SQL Command>";
command.ExecuteNonQuery();