IDTSBufferManager100.CreateFlatBuffer64 Method
Creates an IDTSBuffer100 of the specified size.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Function CreateFlatBuffer64 ( _
lSize As ULong, _
pOwner As IDTSComponentMetaData100 _
) As IDTSBuffer100
'Usage
Dim instance As IDTSBufferManager100
Dim lSize As ULong
Dim pOwner As IDTSComponentMetaData100
Dim returnValue As IDTSBuffer100
returnValue = instance.CreateFlatBuffer64(lSize, _
pOwner)
IDTSBuffer100 CreateFlatBuffer64(
ulong lSize,
IDTSComponentMetaData100 pOwner
)
IDTSBuffer100^ CreateFlatBuffer64(
[InAttribute] unsigned long long lSize,
[InAttribute] IDTSComponentMetaData100^ pOwner
)
abstract CreateFlatBuffer64 :
lSize:uint64 *
pOwner:IDTSComponentMetaData100 -> IDTSBuffer100
function CreateFlatBuffer64(
lSize : ulong,
pOwner : IDTSComponentMetaData100
) : IDTSBuffer100
Parameters
- lSize
Type: System.UInt64
The size, in bytes, of the new IDTSBuffer100.
- pOwner
Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100
The IDTSComponentMetaData100 object of the component that owns the buffer.
Return Value
Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSBuffer100
The newly created IDTSBuffer100 object.
Remarks
This method allocates an IDTSBuffer100 object of the specified size. Flat buffers are not created using an existing buffer definition and contain no columns or rows. Flat buffers are private and their use is specific to the component that requests it.