concat(?1, ?2)
to concatenate two strings p1 and p2. Target SQL function will be dialect-specific, e.g. (?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).
@author Alexey Loubyansky
@version $Revision: 6608 $
|
|