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.
Adds an array of a specified number of bytes to a PipelineBuffer column.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
Public Sub AddBlobData ( _
columnIndex As Integer, _
data As Byte(), _
count As Integer _
)
'Usage
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim data As Byte()
Dim count As Integer
instance.AddBlobData(columnIndex, data, _
count)
public void AddBlobData(
int columnIndex,
byte[] data,
int count
)
public:
void AddBlobData(
int columnIndex,
array<unsigned char>^ data,
int count
)
member AddBlobData :
columnIndex:int *
data:byte[] *
count:int -> unit
public function AddBlobData(
columnIndex : int,
data : byte[],
count : int
)
Parameter
- columnIndex
Typ: System.Int32
The index of the PipelineBuffer column to which the array of bytes will be appended.
- data
Typ: array<System.Byte[]
The array of bytes that is appended to the PipelineBuffer object.
- count
Typ: System.Int32
The number of bytes of data to be appended.
Hinweise
This method works with the following Integration Services data types:
For a complete list of Integration Services data types and the corresponding Get and Set methods of the PipelineBuffer class to use with each type, see Verwenden von Datentypen im Datenfluss.