Metodo IDTSBufferManager100.CreateFlatBuffer64
Creates an IDTSBuffer100 of the specified size.
Spazio dei nomi Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintassi
'Dichiarazione
Function CreateFlatBuffer64 ( _
lSize As ULong, _
pOwner As IDTSComponentMetaData100 _
) As IDTSBuffer100
'Utilizzo
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
Parametri
- lSize
Tipo: System.UInt64
The size, in bytes, of the new IDTSBuffer100.
- pOwner
Tipo: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100
The IDTSComponentMetaData100 object of the component that owns the buffer.
Valore restituito
Tipo: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSBuffer100
The newly created IDTSBuffer100 object.
Osservazioni
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.