| IAppGetDatabaseTableFieldsAsyncT Method (String, String, String, String, FuncResponse, T, AsyncHandle) | 
Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.
 
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
SyntaxTask<T> GetDatabaseTableFieldsAsync<T>(
	string connectionId,
	string database = null,
	string owner = null,
	string table,
	Func<Response, T> onResult,
	AsyncHandle asyncHandle = null
)
Function GetDatabaseTableFieldsAsync(Of T) ( 
	connectionId As String,
	Optional database As String = Nothing,
	Optional owner As String = Nothing,
	table As String,
	onResult As Func(Of Response, T),
	Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- connectionId
 - Type: SystemString
Identifier of the connection
                                        This parameter is mandatory. - database (Optional)
 - Type: SystemString
Name of the database
                                        This parameter is optional.
                                        If qDatabase is not set then qOwner must be set. - owner (Optional)
 - Type: SystemString
Owner of the database
                                        This parameter is optional.
                                        If  qOwner is not set then qDatabase must be set. - table
 - Type: SystemString
Name of the table
                                        This parameter is mandatory. - onResult
 - Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
 - Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request 
Type Parameters
- T
 
Return Value
Type: 
TaskT
See Also