execute method

Uint8List? execute([
  1. List<ParamValue>? params
])

Executes the prepared statement with optional parameters.

The params list should contain ParamValue instances for each parameter placeholder in the prepared SQL statement, in order. Can be null if no parameters are needed.

Returns binary result data on success, null on failure.

Implementation

Uint8List? execute([List<ParamValue>? params]) =>
    _backend.executePrepared(_stmtId, params);