runSelect abstract method
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);