需求:
需要查询 我的已办。
想法:
可能是映射出错,可以使用以下措施。(本人使用的这个措施)
解决:
将sql语句select XXX,修改为 select to_char(cast(xxx as nvarchar2(100))) from act_xx表,其中xxx是act_xx表中的字段,act_xx表字段加下划线别忘记了。
例子:
错误的语句:
select * from act_hi_identitylink actid left join act_hi_procinst actpr on actid.proc_inst_id_ = actpr.proc_inst_id_ where actid.user_id_ = ‘"+name+"’ and actid.type_ = ‘participant’
其中name是查询我的已办的人的名称。
actid.type_ = ‘participant’ 中participant是参与者。
解决后的语句:
select to_char(cast(business_key_ as nvarchar2(100))) from act_hi_identitylink actid left join act_hi_procinst actpr on actid.proc_inst_id_ = actpr.proc_inst_id_ where actid.user_id_ = ‘"+name+"’ and actid.type_ = ‘participant’