Uses of Class
org.hibernate.sql.SimpleSelect
-
Packages that use SimpleSelect Package Description org.hibernate.sql This package contains helper classes for rendering SQL fragments and SQL statements. -
-
Uses of SimpleSelect in org.hibernate.sql
Methods in org.hibernate.sql that return SimpleSelect Modifier and Type Method Description SimpleSelect
SimpleSelect. addColumn(String columnName)
Adds a selectionSimpleSelect
SimpleSelect. addColumn(String columnName, String alias)
Adds a selection, with an aliasSimpleSelect
SimpleSelect. addColumns(String[] columnNames)
Adds selectionsSimpleSelect
SimpleSelect. addRestriction(String columnName)
Appends a restriction comparing thecolumnName
for equality with a parameterSimpleSelect
SimpleSelect. addRestriction(String... columnNames)
Appends a restriction comparing each name incolumnNames
for equality with a parameterSimpleSelect
SimpleSelect. addRestriction(String lhs, ComparisonRestriction.Operator op, String rhs)
Appends a restriction based on the comparison betweenlhs
andrhs
.SimpleSelect
SimpleSelect. addWhereToken(String condition)
Appends a complete where condition.SimpleSelect
SimpleSelect. setComment(String comment)
SimpleSelect
SimpleSelect. setLockMode(LockMode lockMode)
SimpleSelect
SimpleSelect. setLockOptions(LockOptions lockOptions)
SimpleSelect
SimpleSelect. setOrderBy(String orderBy)
SimpleSelect
SimpleSelect. setTableName(String tableName)
Sets the name of the table we are selecting from
-