ReturnSingle<T extends Record> class
final
An SQL statement that returns at-most one row.
This can be an INSERT
, UPDATE
or DELETE
statement. This is not a
SELECT
query, these are represented with QuerySingle objects.
Unlike a QuerySingle object which only returns values when evaluated, this statement may have side-effects, and this statement cannot be extended with additional clauses.
- Available extensions
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
executeAndFetch(
) → Future< A?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle1 extensionA> )> -
executeAndFetch(
) → Future< (A, B)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle2 extensionA> , Expr<B> )> -
executeAndFetch(
) → Future< (A, B, C)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle3 extensionA> , Expr<B> , Expr<C> )> -
executeAndFetch(
) → Future< (A, B, C, D)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle4 extensionA> , Expr<B> , Expr<C> , Expr<D> )> -
executeAndFetch(
) → Future< (A, B, C, D, E)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle5 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> )> -
executeAndFetch(
) → Future< (A, B, C, D, E, F)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle6 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> , Expr<F> )> -
executeAndFetch(
) → Future< (A, B, C, D, E, F, G)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle7 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> , Expr<F> , Expr<G> )> -
executeAndFetch(
) → Future< (A, B, C, D, E, F, G, H)?> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle8 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> , Expr<F> , Expr<G> , Expr<H> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle2 extensionA> , Expr<B> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?, C?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle3 extensionA> , Expr<B> , Expr<C> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?, C?, D?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle4 extensionA> , Expr<B> , Expr<C> , Expr<D> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?, C?, D?, E?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle5 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?, C?, D?, E?, F?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle6 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> , Expr<F> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?, C?, D?, E?, F?, G?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle7 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> , Expr<F> , Expr<G> )> -
executeAndFetchOrNulls(
) → Future< (A?, B?, C?, D?, E?, F?, G?, H?)> -
Available on ReturnSingle<
Execute this statement and return the output.(Expr< , provided by the ReturnSingle8 extensionA> , Expr<B> , Expr<C> , Expr<D> , Expr<E> , Expr<F> , Expr<G> , Expr<H> )> -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited