executePreparedParamValues method

Future<Result<QueryResult>> executePreparedParamValues(
  1. String connectionId,
  2. int stmtId,
  3. List<ParamValue>? params,
  4. StatementOptions? options,
)

Implementation

Future<Result<QueryResult>> executePreparedParamValues(
  String connectionId,
  int stmtId,
  List<ParamValue>? params,
  StatementOptions? options,
) =>
    _repository.executePreparedParamValues(
      connectionId,
      stmtId,
      params,
      options,
    );