IDTSBuffer90.DirectErrorRow Method
Sends a row in an IDTSBuffer90 object to an IDTSOutput90 whose IsErrorOut property is true.
命名空间: Microsoft.SqlServer.Dts.Pipeline.Wrapper
程序集: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)
语法
声明
Sub DirectErrorRow ( _
hRow As Integer, _
lOutputID As Integer, _
lErrorCode As Integer, _
lErrorColumn As Integer _
)
void DirectErrorRow (
int hRow,
int lOutputID,
int lErrorCode,
int lErrorColumn
)
void DirectErrorRow (
int hRow,
int lOutputID,
int lErrorCode,
int lErrorColumn
)
void DirectErrorRow (
int hRow,
int lOutputID,
int lErrorCode,
int lErrorColumn
)
function DirectErrorRow (
hRow : int,
lOutputID : int,
lErrorCode : int,
lErrorColumn : int
)
参数
- hRow
The handle to the row being directed.
- lOutputID
The ID of the IDTSOutput90 object the row is sent to.
- lErrorCode
The component defined error code that identifies the error condition.
- lErrorColumn
The index of the column that caused the error condition.
备注
This method is used by data flow components that have an error IDTSOutput90 object identified by the IsErrorOut property. It is called by the component when it encounters an error while processing a column in the buffer, and the user of the component has set the ErrorRowDisposition of the column or row to RD_RedirectRow.
Managed component developers do not call this method but instead use the DirectErrorRow method of the managed PipelineBuffer class.
线程安全
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
IDTSBuffer90 Interface
IDTSBuffer90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace