how to add multiple parameters in data set for BIRT report -


how add multiple parameters in data set birt report ,till able add 1 parameter. sql query datset is

select cid,attdate,intime,outtime 

from att_emp_swipe attdate >= ?

just use multiple ?-s.

select cid,attdate,intime,outtime att_emp_swipe attdate >= ?  , something_else = ? 

data set parameters bound in order of ? apperance.


Comments