Compartilhar via


Método IDTSBuffer100.SetErrorInfo

Sets the error information for a row.

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

Sintaxe

'Declaração
Sub SetErrorInfo ( _
    hRow As Integer, _
    lOutputID As Integer, _
    lErrorCode As Integer, _
    lErrorColumn As Integer _
)
'Uso
Dim instance As IDTSBuffer100 
Dim hRow As Integer 
Dim lOutputID As Integer 
Dim lErrorCode As Integer 
Dim lErrorColumn As Integer

instance.SetErrorInfo(hRow, lOutputID, _
    lErrorCode, lErrorColumn)
void SetErrorInfo(
    int hRow,
    int lOutputID,
    int lErrorCode,
    int lErrorColumn
)
void SetErrorInfo(
    int hRow, 
    int lOutputID, 
    int lErrorCode, 
    int lErrorColumn
)
abstract SetErrorInfo : 
        hRow:int * 
        lOutputID:int * 
        lErrorCode:int * 
        lErrorColumn:int -> unit
function SetErrorInfo(
    hRow : int, 
    lOutputID : int, 
    lErrorCode : int, 
    lErrorColumn : int
)

Parâmetros

  • lErrorCode
    Tipo: System.Int32
    The component defined error code that occurred while processing the column.
  • lErrorColumn
    Tipo: System.Int32
    The lineage ID of the column that causes the error.

Comentários

This method is used to provide error information for a row that is directed to an asynchronous error output. When directing error rows for synchronous outputs, the DirectErrorRow method is used and the error code and error column information are included as parameters to the method.

The error code, defined by the component, must be greater than zero.

If the IDTSOutput100 object specified by the lOutputID parameter is not an error output, an DTS_E_DIRECTTONONERROROUTPUT exception occurs.

Consulte também

Referência

IDTSBuffer100 Interface

Namespace Microsoft.SqlServer.Dts.Pipeline.Wrapper