Re: JasperReports Plugin:How to specify JDBC connection?

2009-01-27 Thread Dave Newton
Mel Rosenberg wrote: I have been working on using Jasper with Struts2 2.0.11. Looking at the documentation it seems that the dataSource param is looking for a list. The question is what is in the list. Is it a list of connection parameters to the database, ie.. url, login name, password... or

RE: JasperReports Plugin:How to specify JDBC connection?

2009-01-27 Thread dusty
t mypojoList; as a property in your > database > which is used to generate the data in the table list.You should populate > the > list object in your prepare method. > > ( mypojoList > > -Original Message- > From: Rajeshwari Godbole [mailto:rgodb...@gmail.co

RE: JasperReports Plugin:How to specify JDBC connection?

2009-01-27 Thread Mel Rosenberg
13, 2009 2:36 AM To: 'Struts Users Mailing List' Subject: RE: JasperReports Plugin:How to specify JDBC connection? >>>>*param in the struts.xml (???) The param should be the name of the list object which is used to generate the report.For example, You should have a List myp

RE: JasperReports Plugin:How to specify JDBC connection?

2009-01-13 Thread ravindra
st object in your prepare method. ( mypojoList -Original Message- From: Rajeshwari Godbole [mailto:rgodb...@gmail.com] Sent: Tuesday, January 13, 2009 2:12 PM To: user@struts.apache.org Subject: JasperReports Plugin:How to specify JDBC connection? Hello, *Problem*: I created a .jrxml rep

JasperReports Plugin:How to specify JDBC connection?

2009-01-13 Thread Rajeshwari Godbole
Hello, *Problem*: I created a .jrxml report template in iReports that is using an Oracle database to retrieve data. Now I want to plug in this report into a existing webapp using the Struts2 plugin. The webapp uses JDBC to connect to the database. I'm not able to figure out what value to use for t

RE: JDBC connection

2004-06-24 Thread Geeta Ramani
Hi Xinhua: Here's a link explaining what you want to know: http://jakarta.apache.org/struts/faqs/database.html regards, Geeta > -Original Message- > From: Lin, Xinhua [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 24, 2004 9:05 AM > To: [EMAIL PROTECTED] > Subj

Re: JDBC connection

2004-06-24 Thread Nicolas De Loof
database access should be done into DAO (Data Access Objects) with CRUD methods (CReate Update Delete), having beans as parameters and return values. Some call those beans 'domain model beans'. DAO should have a way to get a JDBC connection according to current transaction. You

JDBC connection

2004-06-24 Thread Lin, Xinhua
Hi All, I have a simple question. Where the jdbc connection should stay within a struts application? And how to populate a javabean from the database and let the action class know? Thanks, Xinhua