G
Guido Kraus
Hi,
I use the RowUpdated event of my DataAdapter to response
to DBConcurrencyExceptions. My event handler looks
something like this:
Private Sub OnRowUpdated(ByVal sender As Object, _
ByVal e As OleDb.OleDbRowUpdatedEventArgs)
'...
End Sub
The parameter 'e' has a 'Status' property (declared as
System.Data.UpdateStatus) which can be set to different
values, e.g.
e.Status = UpdateStatus.SkipCurrentRow
or
e.Status = UpdateStatus.Continue
My question: What is the difference between these two
values? It seems to me that the DataAdapter just moves on
to update the next row regardless of one of these Status
values.
Thanks for any ideas,
Guido
I use the RowUpdated event of my DataAdapter to response
to DBConcurrencyExceptions. My event handler looks
something like this:
Private Sub OnRowUpdated(ByVal sender As Object, _
ByVal e As OleDb.OleDbRowUpdatedEventArgs)
'...
End Sub
The parameter 'e' has a 'Status' property (declared as
System.Data.UpdateStatus) which can be set to different
values, e.g.
e.Status = UpdateStatus.SkipCurrentRow
or
e.Status = UpdateStatus.Continue
My question: What is the difference between these two
values? It seems to me that the DataAdapter just moves on
to update the next row regardless of one of these Status
values.
Thanks for any ideas,
Guido