Package | Description |
---|---|
org.josql | |
org.josql.contrib |
Modifier and Type | Method and Description |
---|---|
QueryResults |
Query.execute(java.util.Collection objs)
Execute this query on the specified objects.
|
QueryResults |
Query.execute(java.util.Iterator iter)
Execute this query on the specified objects provided by the iterator.
|
QueryResults |
Query.execute(java.util.List objs)
Execute this query on the specified objects.
|
QueryResults |
Query.getQueryResults()
Get the results of
executing this query. |
static QueryResults |
Query.parseAndExec(java.lang.String query,
java.util.List objs) |
QueryResults |
Query.reorder(java.util.List objs,
java.util.SortedMap dirs)
Re-order the objects according to the columns supplied in the dirs Map.
|
QueryResults |
Query.reorder(java.util.List objs,
java.lang.String orderBys)
Allows the re-ordering of the results via a textual representation of the order bys.
|
Modifier and Type | Method and Description |
---|---|
QueryResults |
JoSQLSwingTableModel.execute(java.util.List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartCategoryDataset.executeQuery(java.util.List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartPieDataset.executeQuery(java.util.List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartXYDataset.executeQuery(java.util.List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLJRDataSource.executeQuery(java.util.List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartCategoryDataset.getResults()
Get any results, will be null unless
Query.execute(List) has been called. |
QueryResults |
JoSQLSwingTableModel.getResults()
Get any results, will be null unless
JoSQLSwingTableModel.execute(List) has been called. |
QueryResults |
JoSQLSwingTableModel.reorder(java.util.List objs,
java.util.SortedMap dirs)
Re-order the columns according to the column indices provided in dirs.
|
QueryResults |
JoSQLSwingTableModel.reorder(java.util.List objs,
java.lang.String orderBys)
Re-order the columns according to the string representation provided by orderBys.
|