In this code I want to store the count of rows that are there in the table subscribe into a variable using a SQL query. I can do that using 'select count(*) from subscribe;' but I don't know how to execute multiple sql queries in this code because if I try to execute multiple queries it gives me an exception that you need to close the datareader first. can anyone just help me?
sqlcon.Open();
SqlCommand cmd = new SqlCommand("select email from subscribe", sqlcon);
SqlDataReader da = cmd.ExecuteReader();
string[] arr = new string[4];
int i = 0;
while (da.Read())
{
arr[i] = da.GetValue(0).ToString();
Console.WriteLine(arr[i]);
i++;
}
Attempting to edit the provided sample without having it tested.
You will need to add a second query returning the count. Then you need to use cmd.ExecuteReader() and da.NexResult() to be able to read the count (from second resultset).