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.
Identified for informational purposes only. Not supported. Future compatibility is not guaranteed. Gets a DataTable object containing the results from a URN.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Private Function SfcHelper_GetDataTable ( _
connection As Object, _
urn As String, _
fields As String(), _
orderByFields As OrderBy() _
) As DataTable Implements IAlienRoot.SfcHelper_GetDataTable
'Usage
Dim instance As Server
Dim connection As Object
Dim urn As String
Dim fields As String()
Dim orderByFields As OrderBy()
Dim returnValue As DataTable
returnValue = CType(instance, IAlienRoot).SfcHelper_GetDataTable(connection, _
urn, fields, orderByFields)
DataTable IAlienRoot.SfcHelper_GetDataTable(
Object connection,
string urn,
string[] fields,
OrderBy[] orderByFields
)
private:
virtual DataTable^ SfcHelper_GetDataTable(
Object^ connection,
String^ urn,
array<String^>^ fields,
array<OrderBy^>^ orderByFields
) sealed = IAlienRoot::SfcHelper_GetDataTable
private abstract SfcHelper_GetDataTable :
connection:Object *
urn:string *
fields:string[] *
orderByFields:OrderBy[] -> DataTable
private override SfcHelper_GetDataTable :
connection:Object *
urn:string *
fields:string[] *
orderByFields:OrderBy[] -> DataTable
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameters
- connection
Type: System.Object
A Object that specifies the connection to the instance of the Database Engine.
- urn
Type: System.String
A String value that specifies the URN.
- fields
Type: array<System.String[]
An array of String values.
- orderByFields
Type: array<Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[]
An array of OrderBy objects.
Return Value
Type: System.Data.DataTable
A DataTable object containing the results from the URN.
Implements
IAlienRoot.SfcHelper_GetDataTable(Object, String, array<String[], array<OrderBy[])