tags:

views:

23

answers:

1

I have fetched some 1000 records using data adaptor and displayed in the UI(DataGrid). Now whenever user is changing the value in anyone of the row in the data grid, that particular value has to be updated into database table. Currently i am dumping the entire table again using adaptor.update. i dont want to do that...i just want to update only that row..how can i achieve this .?? can anybody help regarding this ?

A: 

You can get and pass to adapter only changed rows by calling DataSet.GetChanges() or DataTable.GetChanges methods

ArsenMkrt

related questions