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

Update method Next Page

FillError event


Occurs when an error is detected during a fill operation.

Syntax

Visual Basic

Public Event FillError As FillErrorEventHandler

C#

public event FillErrorEventHandler FillError;

Remarks

The FillError event allows you to determine whether the fill operation should continue after the error occurs.

Examples of when the FillError event might occur are:

To process row fill error events, you must create a System.Data.FillErrorEventHandler delegate and attach it to this event.

See also