Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using JasperReports engine, and one of the reports gets data from database executing SQL statement.
Is there a way to pass parameters to that query?
Thanks in advance!

share|improve this question
how is it if more than 1 parameters? – user521076 Jan 18 '11 at 16:21

1 Answer

up vote 4 down vote accepted

First, create a new parameter in your report. Then insert the parameter in your query, for example:

SELECT name, department FROM employees WHERE employee_id = $P{employeeId}

Make sure your parameter types matches the data type of the columns in your database. Finally, simply pass your parameters to the JasperReports engine. An example would be:

parameters.put("employeeId", Long.valueOf(14309));
JasperRunManager.runReportToPdf(reportFile, parameters, connection);
share|improve this answer
Thanks! That works fine for me! – Andrew Sep 17 '10 at 9:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.