catalogForeignKeys method

  1. @override
Uint8List? catalogForeignKeys(
  1. int connectionId,
  2. String table
)
override

Queries the database catalog for foreign key information.

The connectionId must be a valid active connection. The table is the table name to query. Returns binary result data on success, null on failure.

Implementation

@override
Uint8List? catalogForeignKeys(int connectionId, String table) =>
    _native.catalogForeignKeys(connectionId, table);