Package | Description |
---|---|
org.josql | |
org.josql.contrib |
Modifier and Type | Method and Description |
---|---|
QueryResults |
Query.execute(Collection objs)
Execute this query on the specified objects.
|
QueryResults |
Query.execute(Iterator iter)
Execute this query on the specified objects provided by the iterator.
|
QueryResults |
Query.execute(List objs)
Execute this query on the specified objects.
|
QueryResults |
Query.getQueryResults()
Get the results of
executing this query. |
static QueryResults |
Query.parseAndExec(String query,
List objs) |
QueryResults |
Query.reorder(List objs,
SortedMap dirs)
Re-order the objects according to the columns supplied in the dirs Map.
|
QueryResults |
Query.reorder(List objs,
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(List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartCategoryDataset.executeQuery(List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartPieDataset.executeQuery(List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLFreeChartXYDataset.executeQuery(List l)
Exectute the query and return the results.
|
QueryResults |
JoSQLJRDataSource.executeQuery(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(List objs,
SortedMap dirs)
Re-order the columns according to the column indices provided in dirs.
|
QueryResults |
JoSQLSwingTableModel.reorder(List objs,
String orderBys)
Re-order the columns according to the string representation provided by orderBys.
|