Package | Description |
---|---|
org.sormula.operation |
Classes that perform SQL operations such as select, update, insert, delete.
|
org.sormula.translator |
Classes that provide mapping between columns and Java class members.
|
Modifier and Type | Method and Description |
---|---|
AbstractWhereTranslator<R> |
SqlOperation.getWhereTranslator()
Gets the translator to map row object values into where condition.
|
AbstractWhereTranslator<R> |
SqlOperation.getWhereTranslator2()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
SqlOperation.setWhereTranslator(AbstractWhereTranslator<R> whereTranslator)
Sets the translator to map row object values into where condition.
|
void |
SqlOperation.setWhereTranslator2(AbstractWhereTranslator<R> whereTranslator)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
PrimaryKeyWhereTranslator<R>
Translates values from row object to JDBC parameters for a where condition as defined
by
Column.primaryKey() or Column.identity() annotations or
by Row.primaryKeyFields() . |
class |
WhereTranslator<R>
Translates row values to where condition parameters.
|