ScriptBuffer.SetEndOfRowset Method
Indicates to the data flow that no more rows will be added to the output buffer.
Espace de noms: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.TxScript (in microsoft.sqlserver.txscript.dll)
Syntaxe
'Déclaration
Protected Sub SetEndOfRowset
protected void SetEndOfRowset ()
protected:
void SetEndOfRowset ()
protected void SetEndOfRowset ()
protected function SetEndOfRowset ()
Notes
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 CreateNewOutputRows method to fill the output buffer, then the the SetEndOfRowset method is called for you by the MarkOutputsAsFinished method.
Exemple
The following sample code from the autogenerated ComponentWrapper project item demonstrates how the Script component uses the SetEndOfRowset method.
Private Sub MarkOutputsFinished()
If Output0Buffer IsNot Nothing Then
Output0Buffer.SetEndOfRowset
Output0Buffer = Nothing
End If
If Output1Buffer IsNot Nothing Then
Output1Buffer.SetEndOfRowset
Output1Buffer = Nothing
End If
End Sub
Sécurité des threads
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
ScriptBuffer Class
ScriptBuffer Members
Microsoft.SqlServer.Dts.Pipeline Namespace