Uses of Interface
com.im.commons.db.dml.SQLSelectElement
-
Packages that use SQLSelectElement Package Description com.im.commons.db.dml -
-
Uses of SQLSelectElement in com.im.commons.db.dml
Classes in com.im.commons.db.dml that implement SQLSelectElement Modifier and Type Class Description class
SQLSelectColumn
class
SQLSelectFunction
Methods in com.im.commons.db.dml that return types with arguments of type SQLSelectElement Modifier and Type Method Description java.util.List<? extends SQLSelectElement>
SQLSelectStatement. getSelectElements()
Methods in com.im.commons.db.dml with parameters of type SQLSelectElement Modifier and Type Method Description SQLSelectStatement
SQLSelectStatement. addSelectElement(SQLSelectElement element)
Method parameters in com.im.commons.db.dml with type arguments of type SQLSelectElement Modifier and Type Method Description SQLSelectStatement
SQLElementFactory. sqlSelectInList(java.util.List<SQLSelectElement> selectElements, TableColumn inClauseColumn, java.util.Collection<?> idValues)
Creates a SQL SELECT statement in the formSELECT foo, bar FROM baz WHERE idClauseColumn IN (idValues)
.SQLSelectStatement
SQLElementFactory. sqlSelectPS(java.util.List<SQLSelectElement> selectElements, TableColumn whereTermColumn)
Creates SQL for aPreparedStatement
in the formSELECT foo, bar FROM baz WHERE whereTermColumn = ?
.SQLSelectStatement
SQLElementFactory. sqlSelectPSmore(java.util.List<SQLSelectElement> selectElements, java.util.List<TableColumn> whereTermColumns)
Creates SQL for aPreparedStatement
in the formSELECT foo, bar FROM baz WHERE whereTermColumn1 = ? AND ... AND whereTermColumnN = ?
.
-