IAlienRoot.SfcHelper_GetDataTable Method
Executes the query string to retrieve the specified fields and return a fully populated DataTable object. 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
'Bildirim
Function SfcHelper_GetDataTable ( _
connection As Object, _
urn As String, _
fields As String(), _
orderByFields As OrderBy() _
) As DataTable
'Kullanım
Dim instance As IAlienRoot
Dim connection As Object
Dim urn As String
Dim fields As String()
Dim orderByFields As OrderBy()
Dim returnValue As DataTable
returnValue = instance.SfcHelper_GetDataTable(connection, _
urn, fields, orderByFields)
DataTable SfcHelper_GetDataTable(
Object connection,
string urn,
string[] fields,
OrderBy[] orderByFields
)
DataTable^ SfcHelper_GetDataTable(
Object^ connection,
String^ urn,
array<String^>^ fields,
array<OrderBy^>^ orderByFields
)
abstract SfcHelper_GetDataTable :
connection:Object *
urn:string *
fields:string[] *
orderByFields:OrderBy[] -> DataTable
function SfcHelper_GetDataTable(
connection : Object,
urn : String,
fields : String[],
orderByFields : OrderBy[]
) : DataTable
Parameters
- connection
Type: System.Object
An object that contains the server connection details.
- urn
Type: System.String
The ....
- fields
Type: array<System.String[]
The field names to retrieve.
- orderByFields
Type: array<Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[]
The field names to order on.
Return Value
Type: System.Data.DataTable
A DataTable object that contains the results.