catalogForeignKeys method
Queries the database catalog for foreign key information.
Implementation
Uint8List? catalogForeignKeys(
int connectionId,
String table, {
int? initialBufferBytes,
int? maxBufferBytes,
}) {
return _withSql(
table,
(tablePtr) => callWithBuffer(
(buf, bufLen, outWritten) => _bindings.odbc_catalog_foreign_keys(
connectionId,
tablePtr,
buf,
bufLen,
outWritten,
),
initialSize: initialBufferBytes,
maxSize: maxBufferBytes,
),
);
}