Tagged Questions

0
votes
0answers
8 views

Dataadapter update performance - do I need to use datatable.Getchanges?

This is a simple question, but I'm having trouble finding the answer. I have a large datatable of which I have updated many, but not all rows. I am using a dataadapter to update …
0
votes
2answers
28 views

Get DataSet in RowCommand event/Get modified rows in RowCommand

Hi, I am trying to get the dataset in RowCommand event. Like this DataTable dt = (DataTable)(gvImages.DataSource); DataTable dtChanges = dt.GetChanges(DataRowState.Modified); …
1
vote
1answer
380 views

why GetChanges returns something (when bound to a property) even if there are no changes on datatable?

Bound GetChanges always returns something when bound to a usercontrol's property (even on a simple one) i have made a usercontrol, for some reason unknownst to me, when i bound a …
0
votes
1answer
211 views

Is this a bug in DataTable API? Changes are stored/executed in the “wrong sequence”

Edit: any comments whether you think this is a .NET bug or not would be appreciated. I have a bug which I've managed to simplify to the following scenario: I have a DataTable whe …