TempDB.CreateResultSet Method

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Namespace:  Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly:  Microsoft.SqlServer.Replication.BusinessLogicSupport (in Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)

Syntax

'Declaration
Public Function CreateResultSet ( _
    numCols As Integer, _
    numRows As Integer _
) As TempDBResultSet
'Usage
Dim instance As TempDB
Dim numCols As Integer
Dim numRows As Integer
Dim returnValue As TempDBResultSet

returnValue = instance.CreateResultSet(numCols, _
    numRows)
public TempDBResultSet CreateResultSet(
    int numCols,
    int numRows
)
public:
TempDBResultSet^ CreateResultSet(
    int numCols, 
    int numRows
)
member CreateResultSet : 
        numCols:int * 
        numRows:int -> TempDBResultSet 
public function CreateResultSet(
    numCols : int, 
    numRows : int
) : TempDBResultSet

Parameters