Package org.hibernate.sql
Class Sybase11JoinFragment
- java.lang.Object
-
- org.hibernate.sql.JoinFragment
-
- org.hibernate.sql.Sybase11JoinFragment
-
public class Sybase11JoinFragment extends JoinFragment
An old Sybase-style join (before Sybase supported the ANSI style "inner join" etc syntax) This is needed for Sybase 11.9.2 and earlier, using the HQL 2.* syntax with Collections.
-
-
Field Summary
-
Fields inherited from class org.hibernate.sql.JoinFragment
FULL_JOIN, INNER_JOIN, LEFT_OUTER_JOIN, RIGHT_OUTER_JOIN
-
-
Constructor Summary
Constructors Constructor Description Sybase11JoinFragment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaddCondition(String condition)Adds a free-form condition fragmentvoidaddCondition(String alias, String[] columns, String condition)voidaddCondition(String alias, String[] fkColumns, String[] pkColumns)Adds a condition to the join fragment.voidaddCrossJoin(String tableName, String alias)Adds a cross join to the specified table.voidaddFromFragmentString(String fromFragmentString)voidaddJoin(String tableName, String alias, String[][] fkColumns, String[] pkColumns, JoinType joinType)voidaddJoin(String tableName, String alias, String[][] fkColumns, String[] pkColumns, JoinType joinType, String on)Adds a join, with an additional ON clause fragmentvoidaddJoin(String tableName, String alias, String[] fkColumns, String[] pkColumns, JoinType joinType)Adds a join.voidaddJoin(String tableName, String alias, String[] fkColumns, String[] pkColumns, JoinType joinType, String on)Adds a join, with an additional ON clause fragmentvoidaddJoins(String fromFragment, String whereFragment)Free-form form of adding theta-style joins taking the necessary FROM and WHERE clause fragmentsJoinFragmentcopy()Make a copy.StringtoFromFragmentString()Render this fragment to its FROM clause portionStringtoWhereFragmentString()Render this fragment to its WHERE clause portion-
Methods inherited from class org.hibernate.sql.JoinFragment
addCondition, addFragment, hasFilterCondition, hasThetaJoins, setHasFilterCondition, setHasThetaJoins
-
-
-
-
Method Detail
-
addJoin
public void addJoin(String tableName, String alias, String[] fkColumns, String[] pkColumns, JoinType joinType)
Description copied from class:JoinFragmentAdds a join.- Specified by:
addJoinin classJoinFragment- Parameters:
tableName- The name of the table to be joinedalias- The alias to apply to the joined tablefkColumns- The names of the columns which reference the joined tablepkColumns- The columns in the joined table being referencedjoinType- The type of join
-
addJoin
public void addJoin(String tableName, String alias, String[][] fkColumns, String[] pkColumns, JoinType joinType)
-
toFromFragmentString
public String toFromFragmentString()
Description copied from class:JoinFragmentRender this fragment to its FROM clause portion- Specified by:
toFromFragmentStringin classJoinFragment- Returns:
- The FROM clause portion of this fragment
-
toWhereFragmentString
public String toWhereFragmentString()
Description copied from class:JoinFragmentRender this fragment to its WHERE clause portion- Specified by:
toWhereFragmentStringin classJoinFragment- Returns:
- The WHERE clause portion of this fragment
-
addJoins
public void addJoins(String fromFragment, String whereFragment)
Description copied from class:JoinFragmentFree-form form of adding theta-style joins taking the necessary FROM and WHERE clause fragments- Specified by:
addJoinsin classJoinFragment- Parameters:
fromFragment- The FROM clause fragmentwhereFragment- The WHERE clause fragment
-
copy
public JoinFragment copy()
Description copied from class:JoinFragmentMake a copy.- Specified by:
copyin classJoinFragment- Returns:
- The copy.
-
addCrossJoin
public void addCrossJoin(String tableName, String alias)
Description copied from class:JoinFragmentAdds a cross join to the specified table.- Specified by:
addCrossJoinin classJoinFragment- Parameters:
tableName- The name of the table to be joinedalias- The alias to apply to the joined table
-
addCondition
public void addCondition(String alias, String[] fkColumns, String[] pkColumns)
Description copied from class:JoinFragmentAdds a condition to the join fragment.- Specified by:
addConditionin classJoinFragment- Parameters:
alias- The alias of the joined tablefkColumns- The names of the columns which reference the joined tablepkColumns- The columns in the joined table being referenced
-
addCondition
public boolean addCondition(String condition)
Description copied from class:JoinFragmentAdds a free-form condition fragment- Specified by:
addConditionin classJoinFragment- Parameters:
condition- The fragment- Returns:
trueif the condition was added
-
addFromFragmentString
public void addFromFragmentString(String fromFragmentString)
-
addJoin
public void addJoin(String tableName, String alias, String[] fkColumns, String[] pkColumns, JoinType joinType, String on)
Description copied from class:JoinFragmentAdds a join, with an additional ON clause fragment- Specified by:
addJoinin classJoinFragment- Parameters:
tableName- The name of the table to be joinedalias- The alias to apply to the joined tablefkColumns- The names of the columns which reference the joined tablepkColumns- The columns in the joined table being referencedjoinType- The type of joinon- The additional ON fragment
-
addJoin
public void addJoin(String tableName, String alias, String[][] fkColumns, String[] pkColumns, JoinType joinType, String on)
Description copied from class:JoinFragmentAdds a join, with an additional ON clause fragment- Overrides:
addJoinin classJoinFragment- Parameters:
tableName- The name of the table to be joinedalias- The alias to apply to the joined tablefkColumns- The names of the columns which reference the joined tablepkColumns- The columns in the joined table being referencedjoinType- The type of joinon- The additional ON fragment
-
-