How can I change the column data? I wanted to change some bits to false but I do not know how.
using (SqlCommand cmdadd = new SqlCommand("INSERT into Usuarios (Cadastro) VALUES (@Cadastro)", connection2))
{
cmdadd.Parameters.Add(new SqlParameter("@Cadastro", false));
}
But I did not want to add, wanted to change, what would the code look like?