retrieving, editing, updating a single table row
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I'm trying to, as the subject line suggests, retrieve a single row from a table with the table's primary key, then edit the row's columns before updating the row to save my changes. Am I way off here? I'm not sure how to update an existing row.
EdsDBDataSet.VideoRow videoRow = edsDBDataSet.Video.FindByVideo_ID(int.Parse(txtID1.Text));
videoRow.Video_Description = txtDescription.Text;