05-13-2013 07:23 AM
<sql id="selectHistoricTaskInstancesByQueryCriteriaSql">
from ${prefix}ACT_HI_TASKINST RES
<if test="processFinished || processUnfinished">
inner join ${prefix}ACT_HI_PROCINST HPI ON RES.PROC_INST_ID_ = HPI.ID_
</if>
<if test="processDefinitionKey != null || processDefinitionName != null">
inner join ${prefix}ACT_RE_PROCDEF D on RES.PROC_DEF_ID_ = D.ID_
</if>
<where>
.
.
.
<if test="taskNameLike != null">
and RES.NAME_ like #{taskNameLike}
</if>
.
.
</where>
</sql>
but in above query no pattern matching characters are used. If it cannot search based on given pattern, what is the point in using <strong>like</strong> operator here.
05-14-2013 04:09 AM
05-14-2013 05:24 AM
05-15-2013 09:33 AM
05-16-2013 01:01 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.