executeQueryMultiParams method

Uint8List? executeQueryMultiParams(
  1. int connectionId,
  2. String sql,
  3. Uint8List? paramsBuffer, {
  4. int? maxBufferBytes,
})

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