executePreparedRaw method

Uint8List? executePreparedRaw(
  1. int stmtId,
  2. Uint8List? serializedParams,
  3. int timeoutOverrideMs,
  4. int fetchSize, {
  5. int? maxBufferBytes,
})

Executes a prepared statement with params already serialized (bytes).

Used by the worker isolate. serializedParams is the output of serializeParams or null/empty for no params.

Implementation

Uint8List? executePreparedRaw(
  int stmtId,
  Uint8List? serializedParams,
  int timeoutOverrideMs,
  int fetchSize, {
  int? maxBufferBytes,
}) =>
    _native.execute(
      stmtId,
      serializedParams,
      timeoutOverrideMs,
      fetchSize,
      maxBufferBytes,
    );