开发者

how to add multiple parameters in data set for BIRT report

开发者 https://www.devze.com 2023-03-02 09:54 出处:网络
how to add multiple para开发者_开发问答meters in data set for BIRT report ,till now i am able to add only one parameter.

how to add multiple para开发者_开发问答meters in data set for BIRT report ,till now i am able to add only one parameter. my sql query for datset is

select cid,attdate,intime,outtime

from att_emp_swipe where attdate >= ?


Just use multiple ?-s.

select cid,attdate,intime,outtime
from att_emp_swipe where attdate >= ? 
and something_else = ?

Data set parameters are bound in order of ? apperance.

0

精彩评论

暂无评论...
验证码 换一张
取 消