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