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