DirectRow 方法
Sends a row in an IDTSBuffer100 to an IDTSOutput100.
命名空间: Microsoft.SqlServer.Dts.Pipeline.Wrapper
程序集: Microsoft.SqlServer.DTSPipelineWrap(在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)
语法
声明
Sub DirectRow ( _
hRow As Integer, _
lOutputID As Integer _
)
用法
Dim instance As IDTSBuffer100
Dim hRow As Integer
Dim lOutputID As Integer
instance.DirectRow(hRow, lOutputID)
void DirectRow(
int hRow,
int lOutputID
)
void DirectRow(
[InAttribute] int hRow,
[InAttribute] int lOutputID
)
abstract DirectRow :
hRow:int *
lOutputID:int -> unit
function DirectRow(
hRow : int,
lOutputID : int
)
参数
- hRow
类型:System. . :: . .Int32
The handle of the row.
- lOutputID
类型:System. . :: . .Int32
The ID of the IDTSOutput100 object.
注释
This method is called by components that contain multiple outputs in the same ExclusionGroup property, and is used to direct a row to a specific output. If DirectRow is not called, the rows in the buffer are sent to all of the outputs in the group.