tables method

ParsedRowBuffer? tables({
  1. String catalog = '',
  2. 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. Returns a ParsedRowBuffer on success, null on failure.

Implementation

ParsedRowBuffer? tables({String catalog = '', String schema = ''}) {
  final raw = _backend.catalogTables(
    _connectionId,
    catalog: catalog,
    schema: schema,
  );
  return _parse(raw);
}