+ 1
how to c# update sql data
4 odpowiedzi
+ 4
Hello, kavindu !
For your question, a suitable website has been found.
https://stackoverflow.com/questions/15246182/sql-update-statement-in-c-sharp
https://support.microsoft.com/af-za/help/308507/how-to-update-a-sql-server-database-by-using-the-sqldataadapter-object
+ 1
thank you
+ 1
to update a table with SQL command write-
UPDATE Tablename
SET column1 =value1, column2 =value2, ...,columnN=valueN
WHERE condition;