Uses of Class
org.ujoframework.orm.Query

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
<T extends OrmUjo>
UjoIterator<T>
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.
<UJO extends OrmUjo>
Query<UJO>
Session.createQuery(java.lang.Class<UJO> aClass)
          For all rows.
<UJO extends OrmUjo>
Query<UJO>
Session.createQuery(java.lang.Class<UJO> aClass, Criterion<UJO> criterion)
           
<UJO extends OrmUjo>
Query<UJO>
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
<UJO extends OrmUjo>
long
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
 



Copyright © 2009. All Rights Reserved.