CurrentRow 属性

Gets the index of the current row in the PipelineBuffer.

命名空间:  Microsoft.SqlServer.Dts.Pipeline
程序集:  Microsoft.SqlServer.PipelineHost(在 Microsoft.SqlServer.PipelineHost.dll 中)

语法

声明
Public Property CurrentRow As Integer
    Get
    Set
用法
Dim instance As PipelineBuffer
Dim value As Integer

value = instance.CurrentRow

instance.CurrentRow = value
public int CurrentRow { get; set; }
public:
property int CurrentRow {
    int get ();
    void set (int value);
}
member CurrentRow : int with get, set
function get CurrentRow () : int
function set CurrentRow (value : int)

属性值

类型:System. . :: . .Int32
The index of the current row in the PipelineBuffer.

注释

The PipelineBuffer produces a RowIndexOutOfRangeException if CurrentRow is accessed before advancing the PipelineBuffer to the first row using the NextRow method.