catalogTables method
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,
);