| Package | Description |
|---|---|
| org.ujorm.orm |
The ORM support.
|
| org.ujorm.orm.dialect | |
| org.ujorm.orm.impl | |
| org.ujorm.orm.metaModel | |
| org.ujorm.orm.template |
| Modifier and Type | Method and Description |
|---|---|
TableWrapper |
ColumnWrapper.getTable()
Returns a unique table name in the one SQL statement.
|
TableWrapper[] |
CriterionDecoder.getTables()
Returns all participated tables include the parameter table.
|
TableWrapper[] |
CriterionDecoder.getTablesSorted()
Returns all participated tables include the parameter table.
|
| Modifier and Type | Method and Description |
|---|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
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
|
| Modifier and Type | Class and Description |
|---|---|
class |
TableWrapperImpl
Wrapper for a MetaTable
|
| Modifier and Type | Method and Description |
|---|---|
TableWrapper |
ColumnWrapperImpl.getTable() |
| Constructor and Description |
|---|
ColumnWrapperImpl(MetaColumn column,
TableWrapper table) |
ColumnWrapperImpl(MetaColumn column,
TableWrapper table,
Key key)
Basic constructor
|
| Modifier and Type | Class and Description |
|---|---|
class |
MetaTable
DB table or view meta-model.
|
| Modifier and Type | Method and Description |
|---|---|
TableWrapper |
AliasTable.getTableModel()
Get table Alias
|
| Constructor and Description |
|---|
AliasTable(TableWrapper table,
OrmHandler handler) |
Copyright 2013, Pavel Ponec