runSelect abstract method

Future<QueryResult> runSelect(
  1. String statement,
  2. List<Object?> args
)

Prepares and executes the statement, binding the variables to args. Its safe to assume that the statement is a select statement, the QueryResult that it returns should be returned from here.

If the statement can't be executed, an exception should be thrown. See the class documentation of DatabaseDelegate on what types are supported.

Implementation

Future<QueryResult> runSelect(String statement, List<Object?> args);