CurrentRow 속성
Gets the index of the current row in the PipelineBuffer.
네임스페이스: Microsoft.SqlServer.Dts.Pipeline
어셈블리: Microsoft.SqlServer.PipelineHost.dll의 Microsoft.SqlServer.PipelineHost
구문
‘선언
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.