बस SqlCommand.CommandText
बदलें एक नया SqlCommand
creating बनाने के बजाय हर बार। कनेक्शन को बंद करने और फिर से खोलने की कोई आवश्यकता नहीं है।
// 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();