Méthode IDTSBufferManager100.CreateFlatBuffer64
Creates an IDTSBuffer100 of the specified size.
Espace de noms : Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly : Microsoft.SqlServer.DTSPipelineWrap (en Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntaxe
'Déclaration
Function CreateFlatBuffer64 ( _
lSize As ULong, _
pOwner As IDTSComponentMetaData100 _
) As IDTSBuffer100
'Utilisation
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
Paramètres
- 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.
Valeur de retour
Type : Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSBuffer100
The newly created IDTSBuffer100 object.
Notes
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.