Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 1.0 API Reference » ULDataAdapter class

AcceptChangesDuringFill property Next Page

ContinueUpdateOnError property


Specifies whether to generate an exception when an error is encountered during a row update.

Syntax

Visual Basic

Public Property ContinueUpdateOnError As Boolean

C#

public bool ContinueUpdateOnError {get;set;}

Property value

True to continue the update without generating an exception, false to generate an exception. The default is false.

Remarks

If ContinueUpdateOnError is true, no exception is thrown when an error occurs during the update of a row. The update of the row is skipped and the error information is placed in the System.Data.DataRow.RowError method of the row. The ULDataAdapter continues to update subsequent rows.

If ContinueUpdateOnError is false, an exception is thrown when an error occurs.

See also