Share via


ScriptBuffer.NextRow 메서드

Tries to move to the next available row in the buffer and returns a value that indicates whether another row was available.

네임스페이스:  Microsoft.SqlServer.Dts.Pipeline
어셈블리:  Microsoft.SqlServer.TxScript(Microsoft.SqlServer.TxScript.dll)

구문

‘선언
Protected Function NextRow As Boolean
‘사용 방법
Dim returnValue As Boolean 

returnValue = Me.NextRow()
protected bool NextRow()
protected:
bool NextRow()
member NextRow : unit -> bool
protected function NextRow() : boolean

반환 값

유형: System.Boolean
true if another row was available and has become the current row; otherwise, false.

주의

The Script component developer does not use the ScriptBuffer class directly, but indirectly, through the derived classes in the BufferWrapper project item that represent the component's input and outputs.

If you use only the <InputBufferX>_ProcessInputRow method to loop through rows, then the NextRow method is called for you by the <InputBufferX>_ProcessInput method.

The following sample code from the autogenerated ComponentWrapper project item demonstrates how the Script component uses the NextRow method.

    Public Overridable Sub Input0_ProcessInput(ByVal Buffer As Input0Buffer)

        While Buffer.NextRow()
            Input0_ProcessInputRow(Buffer)
        End While

    End Sub

참고 항목

참조

ScriptBuffer 클래스

Microsoft.SqlServer.Dts.Pipeline 네임스페이스