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