I do not know how to pull the total rows of a table, code:
public string Eventos { get; set; }
SqlCommand comando = new SqlCommand("SELECT count(*) FROM Active", conn);
SqlDataReader leitor = comando.ExecuteReader();
while (leitor.Read()) {...
asked by
26.09.2017 / 18:08