Where class abstract final Query Builder
A query component representing the WHERE
clause of a Query.
- Implemented types
- Implementers
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- isClosed → bool
-
Whether this resource has been closed.
no setterinherited
- jsonRepresentation → String?
-
The JSON representation of this query.
no setterinherited
- parameters → Parameters?
-
The values with which to substitute the parameters defined in the query.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sqlRepresentation → String?
-
The SQL++ representation of this query.
no setterinherited
Methods
-
addChangeListener(
QueryChangeListener< ResultSet> listener) → FutureOr<ListenerToken> -
Adds a
listener
to be notified of changes to the results of this query.inherited -
changes(
) → Stream< QueryChange< ResultSet> > -
Returns a Stream to be notified of changes to the results of this query.
inherited
-
execute(
) → FutureOr< ResultSet> -
Executes this query.
inherited
-
explain(
) → FutureOr< String> -
Returns a string describing the implementation of the compiled query.
inherited
-
groupBy(
ExpressionInterface expression0, [ExpressionInterface? expression1, ExpressionInterface? expression2, ExpressionInterface? expression3, ExpressionInterface? expression4, ExpressionInterface? expression5, ExpressionInterface? expression6, ExpressionInterface? expression7, ExpressionInterface? expression8, ExpressionInterface? expression9]) → GroupBy -
Creates and returns a
GROUP BY
clause query component with the given expressions.inherited -
groupByAll(
Iterable< ExpressionInterface> expressions) → GroupBy -
Creates and returns a
GROUP BY
clause query component with the givenexpressions
.inherited -
limit(
ExpressionInterface limit, {ExpressionInterface? offset}) → Limit -
Creates and returns a
LIMIT
clause query component with the givenlimit
andoffset
.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
orderBy(
OrderingInterface ordering0, [OrderingInterface? ordering1, OrderingInterface? ordering2, OrderingInterface? ordering3, OrderingInterface? ordering4, OrderingInterface? ordering5, OrderingInterface? ordering6, OrderingInterface? ordering7, OrderingInterface? ordering8, OrderingInterface? ordering9]) → OrderBy -
Creates and returns a
ORDER BY
clause query component with the given orderings.inherited -
orderByAll(
Iterable< OrderingInterface> orderings) → OrderBy -
Creates and returns a
ORDER BY
clause query component with the givenorderings
.inherited -
removeChangeListener(
ListenerToken token) → FutureOr< void> -
Removes a previously added change listener.
inherited
-
setParameters(
Parameters? value) → FutureOr< void> -
Sets the parameters of this query.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited