Guys. I've been developing a school management system with java, MySQL and TIBCO Jasper Studio. But I've stuck in a certain point in generating a report. Here is my scenario.
I have two tables called "Student Details" and "Student Results".
In Student Details got "Student ID, Student Name" further Student Results got "Student ID, Subject Name, Grade".
- In fact I have successfully managed to populate data in single page in Jasper Studio with Java Code for a single student for showing his/her exam results.
- Though, my real requirement is when I give a range of students I want to populate a Jasper Report with multiple pages for given range of students to show their exam results (Grade) in each page as picture.
- How ever I managed to populate each page separately for each student. Though results of all students which I select are showing in first page under first student and not showing other students pages.
My method of data populating to report is JRTableModelDataSource for Report page and Report table.