PipelineBuffer.AddBlobData Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds an array of bytes to a PipelineBuffer column.
Overloads
AddBlobData(Int32, Byte[]) |
Adds an array of bytes to a PipelineBuffer column. |
AddBlobData(Int32, Byte[], Int32) |
Adds an array of a specified number of bytes to a PipelineBuffer column. |
AddBlobData(Int32, Byte[])
Adds an array of bytes to a PipelineBuffer column.
public:
void AddBlobData(int columnIndex, cli::array <System::Byte> ^ data);
public void AddBlobData (int columnIndex, byte[] data);
member this.AddBlobData : int * byte[] -> unit
Public Sub AddBlobData (columnIndex As Integer, data As Byte())
Parameters
- columnIndex
- Int32
The index of the PipelineBuffer column to which the array of bytes will be appended.
- data
- Byte[]
The array of bytes that is appended to the PipelineBuffer object.
Remarks
Appends an array of bytes to a PipelineBuffer column.
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 Working with Data Types in the Data Flow.
Applies to
AddBlobData(Int32, Byte[], Int32)
Adds an array of a specified number of bytes to a PipelineBuffer column.
public:
void AddBlobData(int columnIndex, cli::array <System::Byte> ^ data, int count);
public void AddBlobData (int columnIndex, byte[] data, int count);
member this.AddBlobData : int * byte[] * int -> unit
Public Sub AddBlobData (columnIndex As Integer, data As Byte(), count As Integer)
Parameters
- columnIndex
- Int32
The index of the PipelineBuffer column to which the array of bytes will be appended.
- data
- Byte[]
The array of bytes that is appended to the PipelineBuffer object.
- count
- Int32
The number of bytes of data to be appended.
Remarks
This method works with the following Integration Services data types:
[AddBlobData Method (Int32, Byte<xref:Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType.DT_IMAGE>
[AddBlobData Method (Int32, Byte<xref:Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType.DT_NTEXT>
[AddBlobData Method (Int32, Byte<xref:Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType.DT_TEXT>
For a complete list of Integration Services data types and the corresponding Get
and Set
methods of the [AddBlobData Method (Int32, Byte<xref:Microsoft.SqlServer.Dts.Pipeline.PipelineBuffer> class to use with each type, see Working with Data Types in the Data Flow.