| Package | Description |
|---|---|
| org.ujorm.orm |
The ORM support.
|
| org.ujorm.orm.dialect | |
| org.ujorm.orm.impl | |
| org.ujorm.orm.metaModel |
| Modifier and Type | Method and Description |
|---|---|
ColumnWrapper |
AliasKey.getColumn(OrmHandler handler)
Create a new ColumnWrapper for a required alias
|
ColumnWrapper[] |
Query.getColumnArray()
Create a new column List.
|
ColumnWrapper |
Query.readOrderColumn(int i)
Returns an order column.
|
| Modifier and Type | Method and Description |
|---|---|
List<ColumnWrapper> |
Query.getColumns()
Get Column Collection
|
List<? extends ColumnWrapper> |
TableWrapper.getColumns()
Get all table columns
|
protected List<ColumnWrapper> |
Query.getDefaultColumns()
Returns all direct columns of the base table.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
Query.addMissingColumn(ColumnWrapper column,
boolean addChilds,
boolean checkDuplicities)
Add a missing column.
|
protected String |
SqlDialect.getAliasColumnName(ColumnWrapper column)
Returns quoted column name including the alias table
|
Appendable |
SqlDialect.printColumnAlias(ColumnWrapper column,
Appendable out)
Print a full SQL column alias name by sample: "TABLE_ALIAS"."
|
protected ValueCriterion |
SqlDialect.printCriterionValue(String template,
ColumnWrapper column,
ValueCriterion crit,
Appendable out)
Write a right value form criterion
|
void |
SqlDialect.printForeignKey(ValueCriterion crit,
ColumnWrapper column,
String template,
Appendable out)
Print all items of the foreign key
|
| Modifier and Type | Method and Description |
|---|---|
void |
SqlDialect.printTableColumns(Collection<? extends ColumnWrapper> columns,
Appendable values,
Appendable out)
Print table columns
|
Query<UJO> |
Query.setColumns(Collection<ColumnWrapper> columns)
Set an list of required columns to reading from database table.
|
| Modifier and Type | Method and Description |
|---|---|
Appendable |
MSSqlDialect.printColumnOrderAlias(ColumnWrapper column,
Appendable out)
Print a full SQL column alias name by sample: o__
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
MSSqlDialect.printTableColumnsUnderAliases(Collection<ColumnWrapper> columnWrappers,
Appendable out)
prints columns in _
|
protected void |
MSSqlDialect.printTableColumnsWithUnderAliases(Collection<ColumnWrapper> columnWrappers,
Appendable out)
prints columns in ".
|
| Modifier and Type | Class and Description |
|---|---|
class |
ColumnWrapperImpl
Wrapper for a MetaColumn
|
| Modifier and Type | Method and Description |
|---|---|
List<? extends ColumnWrapper> |
TableWrapperImpl.getColumns() |
| Modifier and Type | Class and Description |
|---|---|
class |
MetaColumn
Database column meta-data
|
| Modifier and Type | Method and Description |
|---|---|
ColumnWrapper |
MetaColumn.addTableAlias(String alias)
Create new object column for the new alias
|
| Modifier and Type | Method and Description |
|---|---|
List<? extends ColumnWrapper> |
MetaTable.getColumns()
Returns all columns
|
Copyright 2013, Pavel Ponec