IDTSBufferManager100.CreateFlatBuffer(Int32, IDTSComponentMetaData100) Method

Definition

Creates an IDTSBuffer100 of the specified size.

public:
 Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSBuffer100 ^ CreateFlatBuffer(int lSize, Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSComponentMetaData100 ^ pOwner);
[System.Runtime.InteropServices.DispId(112)]
public Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSBuffer100 CreateFlatBuffer (int lSize, Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100 pOwner);
[<System.Runtime.InteropServices.DispId(112)>]
abstract member CreateFlatBuffer : int * Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100 -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSBuffer100
Public Function CreateFlatBuffer (lSize As Integer, pOwner As IDTSComponentMetaData100) As IDTSBuffer100

Parameters

lSize
Int32

The size, in bytes, of the new IDTSBuffer100.

pOwner
IDTSComponentMetaData100

The IDTSComponentMetaData100 object of the component that owns the buffer.

Returns

The newly created IDTSBuffer100 object.

Attributes

Remarks

This method allocates an IDTSBuffer100 object of the specified size, in bytes. 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.

Applies to