GetDatabaseTablesAsync Method
Overloads
| GetDatabaseTablesAsync(String, String, String) | 
             Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.  | 
        
      
    |
| GetDatabaseTablesAsync(AsyncHandle, String, String, String) | 
             Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.  | 
        
      
    |
| GetDatabaseTablesAsync<T>(AsyncHandle, Func<Response, T>, String, String, String) | 
             Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.  | 
        
      
    
GetDatabaseTablesAsync(String, String, String)
Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
      public Task<IEnumerable<DataTable>> GetDatabaseTablesAsync([QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null, [QixName("qOwner")] string owner = null)
    
  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   | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DataTable>> | 
Implements
GetDatabaseTablesAsync(AsyncHandle, String, String, String)
Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
      public Task<IEnumerable<DataTable>> GetDatabaseTablesAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null, [QixName("qOwner")] string owner = null)
    
  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   | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DataTable>> | 
Implements
GetDatabaseTablesAsync<T>(AsyncHandle, Func<Response, T>, String, String, String)
Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
      public Task<T> GetDatabaseTablesAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null, [QixName("qOwner")] string owner = null)
    
  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   | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |