public interface ParsedQueryIF extends ParsedStatementIF
Modifier and Type | Method and Description |
---|---|
QueryResultIF |
execute()
PUBLIC: Executes the query, returning the query result.
|
QueryResultIF |
execute(Map<String,?> arguments)
PUBLIC: Executes the query binding the parameters in the query to
the values given in the 'arguments' map, returning the query
result.
|
Collection<String> |
getAllVariables()
PUBLIC: Returns all the variables used in the query, in no
particular order.
|
Collection<String> |
getCountedVariables()
PUBLIC: Returns the variables that are counted in the
select clause of the query.
|
List<String> |
getOrderBy()
PUBLIC: Returns the variables listed in the order by
clause in the order they are given there.
|
List<String> |
getSelectedVariables()
PUBLIC: Returns the variables in the select clause of
the query, in the order given there.
|
boolean |
isOrderedAscending(String name)
PUBLIC: Returns true if the named variable is to be sorted in
ascending order.
|
List<String> getSelectedVariables()
Collection<String> getCountedVariables()
Collection<String> getAllVariables()
List<String> getOrderBy()
boolean isOrderedAscending(String name)
QueryResultIF execute() throws InvalidQueryException
InvalidQueryException
QueryResultIF execute(Map<String,?> arguments) throws InvalidQueryException
InvalidQueryException