Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DataAdapter.FillError Event

Definition

Namespace:
System.Data.Common
Assemblies:
netstandard.dll, System.Data.Common.dll
Assembly:
System.Data.Common.dll
Assembly:
System.Data.dll
Assembly:
netstandard.dll
Source:
DataAdapter.cs
Source:
DataAdapter.cs
Source:
DataAdapter.cs
Source:
DataAdapter.cs
Source:
DataAdapter.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Returned when an error occurs during a fill operation.

public:
 event System::Data::FillErrorEventHandler ^ FillError;
public event System.Data.FillErrorEventHandler? FillError;
public event System.Data.FillErrorEventHandler FillError;
member this.FillError : System.Data.FillErrorEventHandler 
Public Custom Event FillError As FillErrorEventHandler 

Event Type

Remarks

The FillError event allows a user to determine whether or not the fill operation should continue after the error occurs. Examples of when the FillError event might occur are:

  • The data being added to a DataSet cannot be converted to a common language runtime type without losing precision.

  • The row being added contains data that violates a Constraint that must be enforced on a DataColumn in the DataSet.

Applies to

See also


Feedback

Was this page helpful?