catalogTables method

  1. @override
Uint8List? catalogTables(
  1. int connectionId, {
  2. String catalog = '',
  3. String schema = '',
})
override

Queries the database catalog for table information.

The connectionId must be a valid active connection. Empty strings for catalog or schema match all values. Returns binary result data on success, null on failure.

Implementation

@override
Uint8List? catalogTables(
  int connectionId, {
  String catalog = '',
  String schema = '',
}) =>
    _native.catalogTables(
      connectionId,
      catalog: catalog,
      schema: schema,
    );