Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the status information of a column in an IDTSBuffer100.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Sub SetStatus ( _
hRow As Integer, _
hCol As Integer, _
dbStatus As UInteger _
)
'Usage
Dim instance As IDTSBuffer100
Dim hRow As Integer
Dim hCol As Integer
Dim dbStatus As UInteger
instance.SetStatus(hRow, hCol, dbStatus)
void SetStatus(
int hRow,
int hCol,
uint dbStatus
)
void SetStatus(
[InAttribute] int hRow,
[InAttribute] int hCol,
[InAttribute] unsigned int dbStatus
)
abstract SetStatus :
hRow:int *
hCol:int *
dbStatus:uint32 -> unit
function SetStatus(
hRow : int,
hCol : int,
dbStatus : uint
)
Parameters
- hRow
Type: System.Int32
The row handle.
- hCol
Type: System.Int32
The column handle.
- dbStatus
Type: System.UInt32
The status information of the column.
Remarks
This method is used to set the status information for a column in the IDTSBuffer100 using the flags in the DTPSTATUSENUM. If the buffer is not created with the BUFF_NOOLEDB flag, then the only acceptable status value is DTPSTATUS_OK or DTPSTATUS_ISNULL.