QSelectAll class

Represents a SELECT * (wildcard) field that selects all columns.

This is used when you want to select all columns from the table(s) in the query.

Example usage:

var selectAll = QSelectAll(); // Generates: *
Implemented types

Constructors

QSelectAll.new()
Creates a SELECT * field specification.

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toSQL() String
Returns the SQL wildcard "*" for selecting all columns.
override
toString() String
A string representation of this object.
inherited

Operators

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