|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Query | |
|---|---|
| org.ujoframework.core | The core classes. |
| org.ujoframework.orm | The ORM support. |
| Uses of Query in org.ujoframework.core |
|---|
| Methods in org.ujoframework.core with parameters of type Query | ||
|---|---|---|
static
|
UjoIterator.getInstance(Query<T> query)
|
|
| Uses of Query in org.ujoframework.orm |
|---|
| Methods in org.ujoframework.orm that return Query | ||
|---|---|---|
Query<UJO> |
Query.addOrder(UjoProperty property)
Add an item to the end of order list. |
|
|
Session.createQuery(java.lang.Class<UJO> aClass)
For all rows. |
|
|
Session.createQuery(java.lang.Class<UJO> aClass,
Criterion<UJO> criterion)
|
|
|
Session.createQuery(Criterion<UJO> criterion)
The table class is derived from the first criterion column. |
|
Query<UJO> |
Query.setOrder(UjoProperty... order)
Set the order item list to an SQL ORDER BY phrase. |
|
| Methods in org.ujoframework.orm with parameters of type Query | ||
|---|---|---|
|
Session.getRowCount(Query<UJO> query)
Returns a count of rows |
|
JdbcStatement |
Session.getStatement(Query query)
Run SQL SELECT by query. |
|
java.lang.Appendable |
SqlDialect.printSelect(MetaTable table,
Query query,
boolean count,
java.lang.Appendable out)
Print a SQL SELECT by table model and query |
|
void |
SqlDialect.printSelectOrder(Query query,
java.lang.Appendable out)
Print SQL ORDER BY |
|
protected java.lang.Appendable |
SqlDialect.printSelectTable(Query query,
boolean count,
java.lang.Appendable out)
Print SQL database SELECT |
|
protected java.lang.Appendable |
SqlDialect.printSelectView(MetaTable table,
Query query,
boolean count,
java.lang.Appendable out)
Print SQL view SELECT |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||