executeQueryParamsRaw method

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

Executes a parameterized query with params already serialized (bytes).

Used by the worker isolate where ParamValue cannot be deserialized. serializedParams is the output of serializeParams. When maxBufferBytes is set, caps the result buffer size.

Implementation

Uint8List? executeQueryParamsRaw(
  int connectionId,
  String sql,
  Uint8List? serializedParams, {
  int? maxBufferBytes,
}) =>
    _native.execQueryParams(connectionId, sql, serializedParams,
        maxBufferBytes: maxBufferBytes,);