Package org.hibernate.dialect.function
Class SQLFunctionTemplate
- java.lang.Object
-
- org.hibernate.dialect.function.SQLFunctionTemplate
-
- All Implemented Interfaces:
SQLFunction
public class SQLFunctionTemplate extends Object implements SQLFunction
Represents HQL functions that can have different representations in different SQL dialects where that difference can be handled via a template/pattern. E.g. in HQL we can define functionconcat(?1, ?2)to concatenate two strings p1 and p2. Dialects would register different versions of this class *using the same name* (concat) but with different templates or patterns;(?1 || ?2)for Oracle,concat(?1, ?2)for MySql,(?1 + ?2)for MS SQL. Each dialect will define a template as a string (exactly like above) marking function parameters with '?' followed by parameter's index (first index is 1).
-
-
Constructor Summary
Constructors Constructor Description SQLFunctionTemplate(Type type, String template)Constructs a SQLFunctionTemplateSQLFunctionTemplate(Type type, String template, boolean hasParenthesesIfNoArgs)Constructs a SQLFunctionTemplate
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypegetReturnType(Type argumentType, Mapping mapping)The return type of the function.booleanhasArguments()Does this function have any arguments?booleanhasParenthesesIfNoArguments()If there are no arguments, are parentheses required?Stringrender(Type argumentType, List args, SessionFactoryImplementor factory)Render the function call as SQL fragment.StringtoString()
-
-
-
Method Detail
-
render
public String render(Type argumentType, List args, SessionFactoryImplementor factory)
Description copied from interface:SQLFunctionRender the function call as SQL fragment. Note, the 'firstArgumentType' parameter should match the one passed intoSQLFunction.getReturnType(org.hibernate.type.Type, org.hibernate.engine.spi.Mapping)- Specified by:
renderin interfaceSQLFunction- Parameters:
argumentType- The type of the first argumentargs- The function argumentsfactory- The SessionFactory- Returns:
- The rendered function call
-
getReturnType
public Type getReturnType(Type argumentType, Mapping mapping) throws QueryException
Description copied from interface:SQLFunctionThe return type of the function. May be either a concrete type which is preset, or variable depending upon the type of the first function argument. Note, the 'firstArgumentType' parameter should match the one passed intoSQLFunction.render(org.hibernate.type.Type, java.util.List, org.hibernate.engine.spi.SessionFactoryImplementor)- Specified by:
getReturnTypein interfaceSQLFunction- Parameters:
argumentType- The type of the first argumentmapping- The mapping source.- Returns:
- The type to be expected as a return.
- Throws:
QueryException- Indicates an issue resolving the return type.
-
hasArguments
public boolean hasArguments()
Description copied from interface:SQLFunctionDoes this function have any arguments?- Specified by:
hasArgumentsin interfaceSQLFunction- Returns:
- True if the function expects to have parameters; false otherwise.
-
hasParenthesesIfNoArguments
public boolean hasParenthesesIfNoArguments()
Description copied from interface:SQLFunctionIf there are no arguments, are parentheses required?- Specified by:
hasParenthesesIfNoArgumentsin interfaceSQLFunction- Returns:
- True if a no-arg call of this function requires parentheses.
-
-