catalogTables abstract method

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

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

Uint8List? catalogTables(
  int connectionId, {
  String catalog = '',
  String schema = '',
});