customSelectQuery method
- @Deprecated('Renamed to customSelect')
- String query, {
- List<
Variable< variables = const [],Object> > - Set<
ResultSetImplementation> readsFrom = const {},
inherited
Creates a custom select statement from the given sql query
. To run the
query once, use Selectable.get
. For an auto-updating streams, set the
set of tables the ready readsFrom
and use Selectable.watch
. If you
know the query will never emit more than one row, you can also use
getSingle
and watchSingle
which return the item directly without
wrapping it into a list.
If you use variables in your query (for instance with "?"), they will be
bound to the variables
you specify on this query.
Implementation
@Deprecated('Renamed to customSelect')
Selectable<QueryRow> customSelectQuery(String query,
{List<Variable> variables = const [],
Set<ResultSetImplementation> readsFrom = const {}}) {
return customSelect(query, variables: variables, readsFrom: readsFrom);
}