[Solved] How do I update a value in C# and SQL Server? [closed]
You didn’t tell what is wrong exactly but I see a few things wrong in your code. You should always use parameterized queries. This kind of string concatenations are open for SQL Injection attacks. I assume your Scor and ID columns are numeric, not character. That’s why you should not use single quotes with it. … Read more