Verander gewoon de SqlCommand.CommandText
in plaats van een nieuw SqlCommand
te maken elke keer. Het is niet nodig om de verbinding te sluiten en opnieuw te openen.
// 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();