| java.lang.Object org.josql.QueryResults
QueryResults | public class QueryResults (Code) | | This class holds all the "result" information about the execution of a particular
Query. It should be noted that this class holds no reference to the Query object
so that a query can be executed, the results "processed" in some way and then the
results can be cleaned up by the GC.
See Also: org.josql.Query.execute(List) |
groupBySaveValues | Map groupBySaveValues(Code) | | |
QueryResults | public QueryResults()(Code) | | |
getGroupByResults | public Map getGroupByResults()(Code) | | Get the group by results.
The group by results. |
getGroupBySaveValues | public Map getGroupBySaveValues(List k)(Code) | | |
getHavingResults | public List getHavingResults()(Code) | | Get the having results.
The having results. |
getResults | public List getResults()(Code) | | Get the results of executing the query, this is the "final" results, i.e.
of executing ALL of the query.
The results. |
getSaveValue | public Object getSaveValue(Object id)(Code) | | Get a particular save value for the passed in key.
Parameters: id - The key of the save value. The value it maps to. |
getSaveValues | public Map getSaveValues()(Code) | | Get the save values.
The save values. |
getTimings | public Map getTimings()(Code) | | Get the timing information, is a Map of string to double values.
The timings. |
getWhereResults | public List getWhereResults()(Code) | | Get the where results.
The where results. |
|
|