DbDataAdapter::GetBatchedRecordsAffected Method (Int32, Int32%, Exception^%)
Returns information about an individual update attempt within a larger batched update.
Assembly: System.Data (in System.Data.dll)
protected: virtual bool GetBatchedRecordsAffected( int commandIdentifier, [OutAttribute] int% recordsAffected, [OutAttribute] Exception^% error )
Parameters
- commandIdentifier
-
Type:
System::Int32
The zero-based column ordinal of the individual command within the batch.
- recordsAffected
-
Type:
System::Int32%
The number of rows affected in the data store by the specified command within the batch.
- error
-
Type:
System::Exception^%
An Exception thrown during execution of the specified command. Returns null (Nothing in Visual Basic) if no exception is thrown.
Return Value
Type: System::BooleanInformation about an individual update attempt within a larger batched update.
Data providers that support batched updating logic must override a series of virtual methods on the DbDataAdapter class. GetBatchedRecordsAffected represents one of those virtual methods. The DbDataAdapter class relies on GetBatchedRecordsAffected to determine the success or failure of individual update attempts within a batch so it can mark each corresponding DataRow accordingly.
Available since 2.0