DbDataAdapter.GetBatchedRecordsAffected(Int32, Int32, Exception) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回在較大之批次更新中嘗試個別更新的相關資訊。
protected:
virtual bool GetBatchedRecordsAffected(int commandIdentifier, [Runtime::InteropServices::Out] int % recordsAffected, [Runtime::InteropServices::Out] Exception ^ % error);
protected virtual bool GetBatchedRecordsAffected (int commandIdentifier, out int recordsAffected, out Exception? error);
protected virtual bool GetBatchedRecordsAffected (int commandIdentifier, out int recordsAffected, out Exception error);
abstract member GetBatchedRecordsAffected : int * int * Exception -> bool
override this.GetBatchedRecordsAffected : int * int * Exception -> bool
Protected Overridable Function GetBatchedRecordsAffected (commandIdentifier As Integer, ByRef recordsAffected As Integer, ByRef error As Exception) As Boolean
參數
- commandIdentifier
- Int32
批次中個別命令之以零為基礎的資料行序數。
- recordsAffected
- Int32
資料存放區中受批次內指定命令影響的資料行數目。
傳回
在較大批次更新內個別更新嘗試的相關資訊。
備註
支援批次更新邏輯的數據提供者必須覆寫 類別上的 DbDataAdapter 一系列虛擬方法。 GetBatchedRecordsAffected
代表其中一個虛擬方法。 類別 DbDataAdapter
依賴 GetBatchedRecordsAffected
判斷批次內個別更新嘗試的成功或失敗,以便據以標記每個對應的 DataRow 專案。
適用於
另請參閱
- ADO.NET 概觀 \(部分機器翻譯\)