UpdateStatus 列挙型
定義
Update(DataSet) 中に現在の行と残りの行に対して実行するアクションを指定します。Specifies the action to take with regard to the current and remaining rows during an Update(DataSet).
public enum class UpdateStatus
public enum UpdateStatus
type UpdateStatus =
Public Enum UpdateStatus
- 継承
フィールド
Continue | 0 | DataAdapter は行の処理を続行します。The DataAdapter is to continue processing rows. |
ErrorsOccurred | 1 | イベント ハンドラーは、更新をエラーとして処理する必要があることを報告します。The event handler reports that the update should be treated as an error. |
SkipAllRemainingRows | 3 | 現在の行と残りのすべての行は更新されません。The current row and all remaining rows are not to be updated. |
SkipCurrentRow | 2 | 現在の行は更新されません。The current row is not to be updated. |