Uses of Class
com.im.commons.db.dml.SQLSelectStatement
-
Packages that use SQLSelectStatement Package Description com.im.commons.db.dml -
-
Uses of SQLSelectStatement in com.im.commons.db.dml
Methods in com.im.commons.db.dml that return SQLSelectStatement Modifier and Type Method Description SQLSelectStatementSQLSelectStatement. addSelectElement(SQLSelectElement element)SQLSelectStatementSQLSelectStatement. addWhereClauseElement(SQLWhereClauseElement where, SQLWhereClauseCompositeElement.Type type)Add the specified element to those that make up the currnet where clause.SQLSelectStatementSQLElementFactory. createSelectStatement()SQLSelectStatementSQLElementFactory. sqlSelectDistinct(TableDefinition table, java.lang.String[] columnNames)SQLSelectStatementSQLElementFactory. 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).SQLSelectStatementSQLElementFactory. sqlSelectPS(java.util.List<SQLSelectElement> selectElements, TableColumn whereTermColumn)Creates SQL for aPreparedStatementin the formSELECT foo, bar FROM baz WHERE whereTermColumn = ?.SQLSelectStatementSQLElementFactory. sqlSelectPSmore(java.util.List<SQLSelectElement> selectElements, java.util.List<TableColumn> whereTermColumns)Creates SQL for aPreparedStatementin the formSELECT foo, bar FROM baz WHERE whereTermColumn1 = ? AND ... AND whereTermColumnN = ?.
-