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.
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Fills column data with a specified result set.
Namespace: Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly: Microsoft.SqlServer.Replication.BusinessLogicSupport (in Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)
Syntax
'Declaration
Public Sub FillColumnData ( _
resultSet As TempDBResultSet, _
rowId As Integer, _
colId As Integer, _
columnData As Object _
)
'Usage
Dim instance As TempDB
Dim resultSet As TempDBResultSet
Dim rowId As Integer
Dim colId As Integer
Dim columnData As Object
instance.FillColumnData(resultSet, rowId, _
colId, columnData)
public void FillColumnData(
TempDBResultSet resultSet,
int rowId,
int colId,
Object columnData
)
public:
void FillColumnData(
TempDBResultSet^ resultSet,
int rowId,
int colId,
Object^ columnData
)
member FillColumnData :
resultSet:TempDBResultSet *
rowId:int *
colId:int *
columnData:Object -> unit
public function FillColumnData(
resultSet : TempDBResultSet,
rowId : int,
colId : int,
columnData : Object
)
Parameters
- resultSet
Type: Microsoft.SqlServer.Replication.BusinessLogicSupport.TempDBResultSet
The result set.
- rowId
Type: System.Int32
The row identifier.
- colId
Type: System.Int32
The column identifier.
- columnData
Type: System.Object
The column data.
See Also
Reference
Microsoft.SqlServer.Replication.BusinessLogicSupport Namespace