Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Adds a specified number of bytes of binary data to a BlobColumn column.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
Public Sub AddBlobData ( _
data As Byte(), _
count As Integer _
)
'Usage
Dim instance As BlobColumn
Dim data As Byte()
Dim count As Integer
instance.AddBlobData(data, count)
public void AddBlobData(
byte[] data,
int count
)
public:
void AddBlobData(
array<unsigned char>^ data,
int count
)
member AddBlobData :
data:byte[] *
count:int -> unit
public function AddBlobData(
data : byte[],
count : int
)
Parameters
- data
Type: array<System.Byte[]
The binary data that is appended to the BlobColumn object.
- count
Type: System.Int32
The number of bytes of binary data to be appended.