GetDatabaseInfoAsync Method
Overloads
| GetDatabaseInfoAsync(String) | Gives information about an ODBC, OLEDB or CUSTOM connection. See  | |
| GetDatabaseInfoAsync(AsyncHandle, String) | Gives information about an ODBC, OLEDB or CUSTOM connection. See  | |
| GetDatabaseInfoAsync<T>(AsyncHandle, Func<Response, T>, String) | Gives information about an ODBC, OLEDB or CUSTOM connection. See  | 
GetDatabaseInfoAsync(String)
Gives information about an ODBC, OLEDB or CUSTOM connection. See Outputs for more details.
Declaration
      public Task<DatabaseInfo> GetDatabaseInfoAsync([QixName("qConnectionId")] string connectionId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | connectionId | Name of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<DatabaseInfo> | 
Implements
GetDatabaseInfoAsync(AsyncHandle, String)
Gives information about an ODBC, OLEDB or CUSTOM connection. See Outputs for more details.
Declaration
      public Task<DatabaseInfo> GetDatabaseInfoAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | connectionId | Name of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<DatabaseInfo> | 
Implements
GetDatabaseInfoAsync<T>(AsyncHandle, Func<Response, T>, String)
Gives information about an ODBC, OLEDB or CUSTOM connection. See Outputs for more details.
Declaration
      public Task<T> GetDatabaseInfoAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | connectionId | Name of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |