[Solved] SQL parameters not working


You’re not actually running the command. You need to call ExecuteNonQuery or ExecuteScalar:

using (var cmd = new SqlCommand(query, conDataBase))        
{
    // set parameters...

    cmd.ExecuteNonQuery();
}

1

solved SQL parameters not working