Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets the index of the current row in the PipelineBuffer.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
Public Property CurrentRow As Integer
Get
Set
'Usage
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)
Eigenschaftswert
Typ: System.Int32
The index of the current row in the PipelineBuffer.
Hinweise
The PipelineBuffer produces a RowIndexOutOfRangeException if CurrentRow is accessed before advancing the PipelineBuffer to the first row using the NextRow method.