Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbDataAdapter::GetBatchedRecordsAffected Method (Int32, Int32%, Exception^%)

 

Returns information about an individual update attempt within a larger batched update.

Namespace:   System.Data.Common
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::Boolean

Information 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.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft