RE: problem in pooled database

2008-12-10 Thread Caldarale, Charles R
> From: Martin Gainty [mailto:[EMAIL PROTECTED] > Subject: RE: problem in pooled database > > also if you are going to be opening up more than 1 > connection I would suggest using connection-pool The OP is already using connection pooling. Note the subject line of this thread a

Re: problem in pooled database

2008-12-10 Thread ahmet temiz
thank you 2008/12/10 David Smith <[EMAIL PROTECTED]> > You could also be more explicit in your code if you import two classes > of the same name from different packages: > > javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup( > "java:comp/env/jdbc/bzk2" ) ; > > --David > > ahmet temiz wro

RE: problem in pooled database

2008-12-10 Thread Martin Gainty
not necessarily endorse content contained within this transmission. > Date: Wed, 10 Dec 2008 14:05:14 -0500 > From: [EMAIL PROTECTED] > To: users@tomcat.apache.org > Subject: Re: problem in pooled database > > You could also be more explicit in your code if you import two cla

Re: problem in pooled database

2008-12-10 Thread David Smith
You could also be more explicit in your code if you import two classes of the same name from different packages: javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup( "java:comp/env/jdbc/bzk2" ) ; --David ahmet temiz wrote: > Now, it seems ok after disabling javax.activation.DataSource; >

Re: problem in pooled database

2008-12-10 Thread ahmet temiz
Now, it seems ok after disabling javax.activation.DataSource; //import javax.activation.DataSource; import javax.sql.DataSource; thank you 2008/12/10 David Smith <[EMAIL PROTECTED]> > Ok... so what do the import statements at the top of that file look > like? Seems to me java has taken DataSou

Re: problem in pooled database

2008-12-10 Thread David Smith
Ok... so what do the import statements at the top of that file look like? Seems to me java has taken DataSource to mean javax.activation.DataSource instead of javax.sql.DataSource. That's probably because of the imports at the top of your source file. --David ahmet temiz wrote: > Exception has

Re: problem in pooled database

2008-12-10 Thread ahmet temiz
Exception has taken place here: DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/bzk2"); this is my Application-specific resource (context.xml) thank you 2008/12/10 David Smith <[EMAIL PROTECTED]> > Patient says: It hurts when I do this... (demonstrates movement) > Doctor

Re: problem in pooled database

2008-12-10 Thread David Smith
Patient says: It hurts when I do this... (demonstrates movement) Doctor says: Don't do that. Moral of the story is the error message is pretty clear. If your class has imported javax.activation.* and javax.sql.*, you may have to be more specific on the type of your datasource variable: javax.sq

problem in pooled database

2008-12-10 Thread ahmet temiz
hello I am trying to manage pooled database (postgresql).I am encountering this problem : java.lang.ClassCastException: org.apache.tomcat.dbcp.dbcp.BasicDataSource cannot be cast to javax.activation.DataSource I will appreciate if you supply any information to me to overcome the problem kind re