executePrepared method
Executes a prepared statement with optional parameters.
The connectionId and stmtId must be valid and correspond to
a statement prepared with prepare.
The params list should contain values for each parameter placeholder
in the prepared SQL statement, in order. Can be null if no parameters.
Implementation
Future<Result<QueryResult>> executePrepared(
String connectionId,
int stmtId, [
List<dynamic>? params,
]) async =>
_repository.executePrepared(connectionId, stmtId, params);