G
Guest
Hi All,
I can get values from a dataset that have been changed by using the
following ;
Dim tempDataSet As DataSet = _
dataSet.GetChanges(DataRowState.Modified)
but I want deleted rows.
So I try
Dim tempDataSet As DataSet = _
dataSet.GetChanges(DataRowState.Deleted)
But I dont get any of the results,from reading I can see that the datarows
are only flagged for deletion and not removed from the dataset. I would have
thought using the GetChanges with DataRowState.Deleted would have returned
the rows.
What is the best way to get the deleted rows.?
Thanks
Neil
I can get values from a dataset that have been changed by using the
following ;
Dim tempDataSet As DataSet = _
dataSet.GetChanges(DataRowState.Modified)
but I want deleted rows.
So I try
Dim tempDataSet As DataSet = _
dataSet.GetChanges(DataRowState.Deleted)
But I dont get any of the results,from reading I can see that the datarows
are only flagged for deletion and not removed from the dataset. I would have
thought using the GetChanges with DataRowState.Deleted would have returned
the rows.
What is the best way to get the deleted rows.?
Thanks
Neil