IDTSInput100.ErrorRowDisposition Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a value from a DTSRowDisposition enumeration that specifies how the component will handle error conditions that occur when processing a row from a PipelineBuffer object.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(113)]
DTSRowDisposition ErrorRowDisposition {
    [DispIdAttribute(113)]
    get;
    [DispIdAttribute(113)]
    set;
}
[DispIdAttribute(113)]
property DTSRowDisposition ErrorRowDisposition {
    [DispIdAttribute(113)]
    DTSRowDisposition get();
    [DispIdAttribute(113)]
    void set(DTSRowDisposition value);
}
[<DispIdAttribute(113)>]
abstract ErrorRowDisposition : DTSRowDisposition with get, set
<DispIdAttribute(113)>
Property ErrorRowDisposition As DTSRowDisposition

Property Value

Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.DTSRowDisposition

A value from the DTSRowDisposition enumeration.

Remarks

When an error occurs during execution, components evaluate this property to determine how to proceed. If RD_RedirectRow is specified, the row is directed to the error output.

See Also

IDTSInput100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top