Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Gets the number of bytes contained in a column in an IDTSBuffer90.
Espacio de nombres: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Ensamblado: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)
Sintaxis
'Declaración
Sub GetBLOBLength ( _
<InAttribute> hRow As Integer, _
<InAttribute> hCol As Integer, _
<OutAttribute> ByRef pdwBytes As UInteger _
)
void GetBLOBLength (
[InAttribute] int hRow,
[InAttribute] int hCol,
out uint pdwBytes
)
void GetBLOBLength (
[InAttribute] int hRow,
[InAttribute] int hCol,
[OutAttribute] unsigned int% pdwBytes
)
void GetBLOBLength (
/** @attribute InAttribute() */ int hRow,
/** @attribute InAttribute() */ int hCol,
/** @attribute OutAttribute() */ /** @ref */ UInt32 pdwBytes
)
JScript no permite pasar argumentos de valor para referencia.
Parámetros
- hRow
The handle of the row.
- hCol
The handle of the column in the row.
- pdwBytes
An out parameter that contains the number of bytes in the row.
Notas
The GetBLOBLength method is used to determine the number of bytes in a column that contains a binary large object (BLOB) data type, such as a DT_IMAGE. This method is typically called before a call to the GetBLOBData method. The third parameter to GetBLOBData is the number of bytes to retrieve from the BLOB. You call this method before calling GetBLOBData to retrieve all the bytes in a BLOB column.
Seguridad para subprocesos
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plataformas
Plataformas de desarrollo
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Plataformas de destino
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Vea también
Referencia
IDTSBuffer90 Interface
IDTSBuffer90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace