TempDB.ResultSetCreate Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Creates result set.
Namespace: Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly: Microsoft.SqlServer.Replication.BusinessLogicSupport (in Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)
Syntax
'Declaration
Public Shared Function ResultSetCreate ( _
numCols As Integer, _
numRows As Integer _
) As TempDBResultSet
'Usage
Dim numCols As Integer
Dim numRows As Integer
Dim returnValue As TempDBResultSet
returnValue = TempDB.ResultSetCreate(numCols, _
numRows)
public static TempDBResultSet ResultSetCreate(
int numCols,
int numRows
)
public:
static TempDBResultSet^ ResultSetCreate(
int numCols,
int numRows
)
static member ResultSetCreate :
numCols:int *
numRows:int -> TempDBResultSet
public static function ResultSetCreate(
numCols : int,
numRows : int
) : TempDBResultSet
Parameters
- numCols
Type: System.Int32
The number of columns.
- numRows
Type: System.Int32
The number of rows.
Return Value
Type: Microsoft.SqlServer.Replication.BusinessLogicSupport.TempDBResultSet
A TempDBResultSet object.
See Also
Reference
Microsoft.SqlServer.Replication.BusinessLogicSupport Namespace