GetDatabaseTableFieldsAsync Method
Overloads
| GetDatabaseTableFieldsAsync(String, String, String, String) |
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection. |
|
| GetDatabaseTableFieldsAsync(AsyncHandle, String, String, String, String) |
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection. |
|
| GetDatabaseTableFieldsAsync<T>(AsyncHandle, Func<Response, T>, String, String, String, String) |
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection. |
GetDatabaseTableFieldsAsync(String, String, String, String)
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
public Task<IEnumerable<DataField>> GetDatabaseTableFieldsAsync([QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null, [QixName("qOwner")] string owner = null, [QixName("qTable")] string table)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | connectionId |
Identifier of the connection. |
| System.String | database |
Name of the database.
If |
| System.String | owner |
Owner of the database.
If |
| System.String | table |
Name of the table. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DataField>> |
Implements
GetDatabaseTableFieldsAsync(AsyncHandle, String, String, String, String)
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
public Task<IEnumerable<DataField>> GetDatabaseTableFieldsAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null, [QixName("qOwner")] string owner = null, [QixName("qTable")] string table)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.String | connectionId |
Identifier of the connection. |
| System.String | database |
Name of the database.
If |
| System.String | owner |
Owner of the database.
If |
| System.String | table |
Name of the table. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DataField>> |
Implements
GetDatabaseTableFieldsAsync<T>(AsyncHandle, Func<Response, T>, String, String, String, String)
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
public Task<T> GetDatabaseTableFieldsAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null, [QixName("qOwner")] string owner = null, [QixName("qTable")] string table)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Func<Response, T> | onResult |
Continuation function |
| System.String | connectionId |
Identifier of the connection. |
| System.String | database |
Name of the database.
If |
| System.String | owner |
Owner of the database.
If |
| System.String | table |
Name of the table. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T |