catalogTables method

Future<Result<QueryResult>> catalogTables(
  1. String connectionId, {
  2. String catalog = '',
  3. String schema = '',
})

Queries the database catalog for table information.

Returns metadata about tables in the specified catalog and schema. Empty strings for catalog or schema match all values. The connectionId must be a valid active connection.

Implementation

Future<Result<QueryResult>> catalogTables(
  String connectionId, {
  String catalog = '',
  String schema = '',
}) async =>
    _repository.catalogTables(
      connectionId,
      catalog: catalog,
      schema: schema,
    );