我需要在BIRT报告中将多个参数传递给我的PostGres查询。
以下是我的疑问:
select
t1.id as id,
t1.json->>'group_zl6oo94/group_wb1hp47/location' as value_of_slum_location
from logger_instance as t1 , logger_xform as t2
where t1.xform_id=t2.id
and t2.title=?
and cast(t1.json as text) like '%' + ? + '%';
我需要传递两个参数,即Title和Text。
我为每个参数创建了两个data_source_properties
,并为每个参数创建了两个report_parameters
。
由于这个原因,我无法运行报告。
请帮我运行此查询。