Propriedade do RDL PipelineBuffer.CurrentRow
Gets the index of the current row in the PipelineBuffer.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (em Microsoft.SqlServer.PipelineHost.dll)
Sintaxe
'Declaração
Public Property CurrentRow As Integer
Get
Set
'Uso
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)
Valor da propriedade
Tipo: System.Int32
The index of the current row in the PipelineBuffer.
Comentários
The PipelineBuffer produces a RowIndexOutOfRangeException if CurrentRow is accessed before advancing the PipelineBuffer to the first row using the NextRow method.