DBConcurrencyException::CopyToRows Method (array<DataRow^>^, Int32)
Copies the DataRow objects whose update failure generated this exception, to the specified array of DataRow objects, starting at the specified destination array index.
Assembly: System.Data (in System.Data.dll)
Parameters
- array
-
Type:
array<System.Data::DataRow^>^
The one-dimensional array of DataRow objects to copy the DataRow objects into.
- arrayIndex
-
Type:
System::Int32
The destination array index to start copying into.
When performing batch updates with the ContinueUpdateOnError property of the DataAdapter set to true, this exception is thrown if all row updates fail. In this case, this DBConcurrencyException contains DataRow objects for all rows whose update failed, rather than just the one DataRow object in Row, and the affected DataRow objects can be retrieved by calling CopyToRows.
Available since 2.0
CopyToRows Overload
DBConcurrencyException Class
System.Data Namespace
DataAdapters and DataReaders
Performing Batch Updates with a DataAdapter