AbstractQuery
Base class representing an SQL query that returns a ResultSet when executed.
Inheritors
Properties
Whether the SQL statement is meant to be performed as part of a batch execution.
The stored list of columns and their SortOrder for an ORDER BY
clause in this query.
Functions
Returns a new SizedIterable that is a copy of the original.
Executes the SQL statement directly in the provided transaction and returns the generated result, or null
if either no result was retrieved or if the transaction blocked statement execution.
Determines the exact way that an SQL statement is executed in a transaction and applies any necessary logic before returning the result generated by the executed statement.
Returns a new SizedIterable with a locking read for the elements according to the rules specified by option.
Returns a SizedIterable containing the lazily evaluated results of applying the function f to each original element.
Returns a new SizedIterable without any locking read for the elements.
Modifies this query to sort results according to the provided order of expressions.
Uses a transaction connection and an sql string representation to return a precompiled SQL statement, stored as an implementation of PreparedStatementApi.
Returns the string representation of an SQL query, generated by appending SQL expressions to a QueryBuilder.
Returns the string representation of an SQL statement.
Modifies this query to retrieve only distinct results if value is set to true
.