我使用JasperReports 4.7、iReport 4.7.1和PostgreSQL 8.4作为数据库后端。
在使用类似于以下的查询进行报告时
(select * from table1)
union
(select * from table1)
我发现iReport 会做报告,但是当我将报告上传到JasperReport 服务器时,我得到了An error has occurred. Please contact your system administrator. (6632)
我将查询重写为
select *
from (
(select * from table1)
union
(select * from table1)
) t
它适用于iReport和JasperReports。
所以,问题是,我错过了什么还是我需要配置什么?