executeQueryMultiParams method
Executes a parameterised batch SQL that may return multiple result sets.
See OdbcNative.execQueryMultiParams for the full contract.
paramsBuffer is the output of serializeParams(...).
Implementation
Uint8List? executeQueryMultiParams(
int connectionId,
String sql,
Uint8List? paramsBuffer, {
int? maxBufferBytes,
}) =>
_native.execQueryMultiParams(
connectionId,
sql,
paramsBuffer,
maxBufferBytes: maxBufferBytes,
);