SqlQuery class abstract

Implementers

Constructors

SqlQuery(String name, List<FoundElement> elements, {bool? hasMultipleTables})

Properties

declaredInMoorFile bool
Whether this query was declared in a .moor file.
getter/setter pair
elements List<FoundElement>
Union of variables and placeholders, but in the order in which they appear inside the query.
final
fromContext → AnalysisContext?
no setter
hashCode int
The hash code for this object.
no setterinherited
hasMultipleTables bool
Whether the underlying sql statement of this query operates on more than one table. In that case, column references in Dart placeholders have to write their table name (e.g. foo.bar instead of just bar).
final
lints List<AnalysisError>?
getter/setter pair
name String
final
placeholders List<FoundDartPlaceholder>
The placeholders in this query which are bound and converted to sql at runtime. For instance, in SELECT * FROM tbl WHERE $expr, the expr is going to be a FoundDartPlaceholder with the type ExpressionDartPlaceholderType and ColumnType.boolean. We will generate a method which has a Expression<bool, BoolType> expr parameter.
getter/setter pair
resultClassName String
no setter
resultSet InferredResultSet?
The result set of this statement, mapped to moor-generated classes.
no setter
root → AstNode?
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sql String?
no setter
variables List<FoundVariable>
The variables that appear in the sql query. We support three kinds of sql variables: The regular "?" variables, explicitly indexed "?xyz" variables and colon-named variables. Even though this feature is not supported by sqlite directly, we provide syntax sugar for expressions like column IN ?, where the variable will have a List type at runtime and expand to the appropriate tuple (e.g. column IN (?, ?, ?) when the variable is bound to a list with three elements). To make the desugaring easier at runtime, we require that:
getter/setter pair

Methods

elementsWithNestedQueries() List<FoundElement>
Returns all found elements, from this query an all nested queries. The elements returned by this method are in no particular order, thus they can only be used to determine the method parameters.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
resultTypeCode([GenerationOptions options = const GenerationOptions()]) String
The Dart type representing a row of this result set.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited