Instantiating an iReport Collection parameter from an Array in one line
Java | (0)
While working with iReport, I wanted to test my report with a default Collection value for my Hibernate Query.
The HQL is something like this,
SELECT person.fullName as personName
FROM Person person
WHERE person.id in ($P{people})
Continue Reading...