UpdateStatus Enumeração
Definição
Especifica a ação a ser adotada com relação à linha atual e às restantes durante um 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
- Herança
Campos
| Continue | 0 | O DataAdapter é continuar processando as linhas.The DataAdapter is to continue processing rows. |
| ErrorsOccurred | 1 | O manipulador de eventos relata que a atualização deve ser tratada como um erro.The event handler reports that the update should be treated as an error. |
| SkipAllRemainingRows | 3 | A linha atual e todas as linhas restantes não deverão ser atualizadas.The current row and all remaining rows are not to be updated. |
| SkipCurrentRow | 2 | A linha atual não deverá ser atualizada.The current row is not to be updated. |