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.
Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Shared Function ExecuteWithResults ( _
query As StringCollection, _
con As Object _
) As DataTable
'Usage
Dim query As StringCollection
Dim con As Object
Dim returnValue As DataTable
returnValue = ExecuteSql.ExecuteWithResults(query, _
con)
public static DataTable ExecuteWithResults(
StringCollection query,
Object con
)
public:
static DataTable^ ExecuteWithResults(
StringCollection^ query,
Object^ con
)
static member ExecuteWithResults :
query:StringCollection *
con:Object -> DataTable
public static function ExecuteWithResults(
query : StringCollection,
con : Object
) : DataTable
Parameters
- query
Type: System.Collections.Specialized.StringCollection
A string collection value for the query.
- con
Type: System.Object
The connection object used in the query.
Return Value
Type: System.Data.DataTable
The result of the query.