john.ambat Posted June 26, 2013 Posted June 26, 2013 I am doing a student project using java swing/mysql and jasper reports.I did the follwing:1. created a mysql database dis2. created JDBC connection.3.created a report , farmer_details, using jaspersoft ireport designer.4.connected the report using the following java swing codeusing the following code i am getting the Jasper report(without passing parameters to sql query).=========================================================================private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { try{ JasperDesign jd=JRXmlLoader.load("/home/john/NetBeansProjects/dis/reports/farmer_details.jrxml"); String sql="select * from farmers where farmer_id=1"; JRDesignQuery newQuery= new JRDesignQuery(); newQuery.setText(sql); jd.setQuery(newQuery); JasperReport jr=JasperCompileManager.compileReport(jd); JasperPrint jp=JasperFillManager.fillReport(jr, null, conn); JasperViewer.viewReport(jp); }catch(Exception e){ } } ============================================================================5. I would like to pass farmer_id as a parameter to the Jasper report from Java swing in the above listed code.please help mejohn simon
Thomas Zimmer Posted June 30, 2013 Posted June 30, 2013 Build a parameter "MyId" map and pass it to the engine in the call:JasperPrint jp=JasperFillManager.fillReport(jr, parameters, conn);Your SQL-Query should be then:String sql="select * from farmers where farmer_id=$P{MyId}";Cheers, Thomashttp://www.thomaszimmer.net
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now