Partager via


Interface IDTSBuffer100

Represents an in-memory, two-dimensional storage object that contains rows and columns.

Espace de noms :  Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly :  Microsoft.SqlServer.DTSPipelineWrap (en Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntaxe

'Déclaration
<GuidAttribute("85864348-F482-4E59-83B7-DCD226253CA3")> _
<InterfaceTypeAttribute()> _
Public Interface IDTSBuffer100
'Utilisation
Dim instance As IDTSBuffer100
[GuidAttribute("85864348-F482-4E59-83B7-DCD226253CA3")]
[InterfaceTypeAttribute()]
public interface IDTSBuffer100
[GuidAttribute(L"85864348-F482-4E59-83B7-DCD226253CA3")]
[InterfaceTypeAttribute()]
public interface class IDTSBuffer100
[<GuidAttribute("85864348-F482-4E59-83B7-DCD226253CA3")>]
[<InterfaceTypeAttribute()>]
type IDTSBuffer100 =  interface end
public interface IDTSBuffer100

Le type IDTSBuffer100 expose les membres suivants.

Méthodes

  Nom Description
Méthode publique AddBLOBData Appends byte data to a column in an IDTSBuffer100.
Méthode publique AddRow Adds a new row to an IDTSBuffer100 object.
Méthode publique Clone Creates a private copy of an IDTSBuffer100 object.
Méthode publique DirectErrorRow Sends a row in an IDTSBuffer100 object to an IDTSOutput100 whose IsErrorOut property is true.
Méthode publique DirectRow Sends a row in an IDTSBuffer100 to an IDTSOutput100.
Méthode publique GetBLOBData Retrieves an array of bytes from a binary large object (BLOB) stored in a column of a IDTSBuffer100.
Méthode publique GetBLOBLength Gets the number of bytes contained in a column in an IDTSBuffer100.
Méthode publique GetBLOBObject Gets an IDTSBLOBObject100 that is used to read and write the bytes in a column in an IDTSBuffer100.
Méthode publique GetBLOBStream Gets an IStream interface used to access the binary large object (BLOB) stored in a column in an IDTSBuffer100.
Méthode publique GetBoundaryInfo Gets the number of columns and the maximum number of rows that an IDTSBuffer100 can hold.
Méthode publique GetColumnCount Gets the number of columns in an IDTSBuffer100.
Méthode publique GetColumnInfo Gets the DTP_BUFFCOL structure for the specified column in an IDTSBuffer100.
Méthode publique GetData Retrieves the data stored in a specified row and column of a IDTSBuffer100.
Méthode publique GetDataByRef (Feature deprecated, see Remarks.) Gets a pointer to the data stored in a column in an IDTSBuffer100.
Méthode publique GetFlatMemory Gets a pointer to the bytes stored by an IDTSBuffer100.
Méthode publique GetID Retrieves the ID of a buffer.
Méthode publique GetManager Gets a buffer manager.
Méthode publique GetRowCount Gets the number of rows stored in an IDTSBuffer100.
Méthode publique GetRowDataBytes (Feature deprecated, see Remarks.) Gets a pointer to the start of a row in an IDTSBuffer100.
Méthode publique GetRowStarts (Feature deprecated, see Remarks.) Use the GetData or GetBLOBData method instead of the GetRowStarts method.
Méthode publique GetStatus Retrieves the status information of a column in an IDTSBuffer100.
Méthode publique GetType Gets the handle of a buffer type.
Méthode publique IsEndOfRowset Specifies whether an IDTSBuffer100 has reached the end of its collection of rows.
Méthode publique IsNull Checks whether a specified column is null.
Méthode publique LockData Locks the data in an IDTSBuffer100.
Méthode publique MoveRow Moves a row in an IDTSBuffer100 to a new location.
Méthode publique PrepareDataStatusForInsert Sets the status value of the columns in a range of rows.
Méthode publique RemoveRow Deletes a row from an IDTSBuffer100.
Méthode publique ResetBLOBData Deletes the bytes stored in a column in an IDTSBuffer100.
Méthode publique SetBLOBFromObject Assigns the data contained in an IDTSBLOBObject100 to a column in an IDTSBuffer100.
Méthode publique SetBLOBFromStream Assigns data to a binary large object (BLOB) column from a sequential stream.
Méthode publique SetData Assigns data to a column in an IDTSBuffer100.
Méthode publique SetEndOfRowset Notifies an IDTSBufferManager100 that the component has finished adding rows to an output IDTSBuffer100 object.
Méthode publique SetErrorInfo Sets the error information for a row.
Méthode publique SetStatus Sets the status information of a column in an IDTSBuffer100.
Méthode publique SwapRows Swaps the location of two rows in an IDTSBuffer100.
Méthode publique UnlockData Unlocks the data in an IDTSBuffer100 object.

Haut de la page

Notes

The IDTSBuffer100 is an in-memory, two-dimensional data structure that contains rows and columns. Each column in a buffer has information that describes its data type, its offset location in memory in the row, its maximum size, and the lineage ID of the column in a component.

The data in each column is accessed either by using its offset as defined by the DTP_BUFFCOL structure, or by using the SetData and GetData methods, in which the data location of the column in the buffer is defined by handles to its row and column.

There are two types of buffers, private and public, which are created by the IDTSBufferManager100. Private buffers are created when requested by a data flow component and are used internally by the component. Public buffers are provided to the components in the data flow graph and filled and manipulated before arriving at the destination. Public buffers are created, managed, and destroyed by the IDTSBufferManager100.

Buffers are identified by their handles and are 1-based, which means they cannot have a value of zero or null Nothing nullptr unit une référence Null (Nothing dans Visual Basic) unless they are invalid.

Managed component developers do not typically use the IDTSBuffer100 object unless they intend to create private buffers and implement the code necessary to interoperate between managed code and native code. Instead, they use the managed PipelineBuffer class.