Uses of Interface
org.ujorm.orm.TableWrapper

Packages that use TableWrapper
org.ujorm.orm The ORM support. 
org.ujorm.orm.dialect   
org.ujorm.orm.impl   
org.ujorm.orm.metaModel   
org.ujorm.orm.template   
 

Uses of TableWrapper in org.ujorm.orm
 

Fields in org.ujorm.orm with type parameters of type TableWrapper
protected  Set<TableWrapper> CriterionDecoder.tables
           
 

Methods in org.ujorm.orm that return TableWrapper
 TableWrapper[] CriterionDecoder.getTables()
          Returns all participated tables include the parameter table.
 TableWrapper[] CriterionDecoder.getTablesSorted()
          Returns all participated tables include the parameter table.
 

Methods in org.ujorm.orm with parameters of type TableWrapper
 Appendable SqlDialect.printSelect(TableWrapper table, Query query, boolean count, Appendable out)
          Print a SQL SELECT by table model and query
protected  Appendable SqlDialect.printSelectView(TableWrapper table, Query query, boolean count, Appendable out)
          Print SQL view SELECT
 void SqlDialect.printTableAliasDefinition(TableWrapper table, Appendable out)
          Print a SQL database and table name and an alias definition - by sample: SCHEMA.TABLE ALIAS
 

Uses of TableWrapper in org.ujorm.orm.dialect
 

Methods in org.ujorm.orm.dialect with parameters of type TableWrapper
protected  Appendable MySqlDialect.printWhere(CriterionDecoder decoder, TableWrapper[] tables, Appendable out)
          Print where condition for DELETE / UPDATE TODO: FIX THE IMPLEMENTATION - probably in the CriterionDecoder class
 

Uses of TableWrapper in org.ujorm.orm.impl
 

Classes in org.ujorm.orm.impl that implement TableWrapper
 class TableWrapperImpl
          Wrapper for a MetaTable
 

Uses of TableWrapper in org.ujorm.orm.metaModel
 

Classes in org.ujorm.orm.metaModel that implement TableWrapper
 class MetaTable
          DB table or view meta-model.
 

Methods in org.ujorm.orm.metaModel that return TableWrapper
 TableWrapper MetaTable.addAlias(String alias)
          Add alias name to the new object
 

Uses of TableWrapper in org.ujorm.orm.template
 

Methods in org.ujorm.orm.template that return TableWrapper
 TableWrapper AliasTable.getTableModel()
          Get table Alias
 

Constructors in org.ujorm.orm.template with parameters of type TableWrapper
AliasTable(TableWrapper table, OrmHandler handler)
           
 



Copyright 2013, Pavel Ponec