RE: data-source configruation question

2005-04-15 Thread Scott Purcell
1:47 AM To: Struts Users Mailing List Subject: Re: data-source configruation question Hi. u missed to call the data-source key u specified in ur struts-config.xml In ur struts-config.xml: U have: It must be: In ur action class: U have: dataSource = getDataSource(request); It must be:

Re: data-source configruation question

2005-04-15 Thread Rafael Taboada
why don't use mysql-connector-java-3.1.7-bin??.. Download from www.mysql.com -- Rafael Taboada - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: data-source configruation question

2005-04-15 Thread Rafael Taboada
Hi. u missed to call the data-source key u specified in ur struts-config.xml In ur struts-config.xml: U have: It must be: In ur action class: U have: dataSource = getDataSource(request); It must be: dataSource = getDataSource(request,"myDB"); And about being depreciated, there ar

RE: data-source configruation question

2005-04-15 Thread Scott Purcell
11:30 AM To: user@struts.apache.org Subject: data-source configruation question Hello, I am confused on setting up a data source using dbcp with struts. I am referencing this web-site: http://linux.com.hk/docs/struts/faqs/database.html I am using mysql and struts 1.2. The problem I have is

data-source configruation question

2005-04-15 Thread Scott Purcell
Hello, I am confused on setting up a data source using dbcp with struts. I am referencing this web-site: http://linux.com.hk/docs/struts/faqs/database.html I am using mysql and struts 1.2. The problem I have is two-fold. First I remember hearing something about the being depreciated? Not sure