Re: JDBC Driver Installation

2002-10-02 Thread Zeeshan
the file to clases12. jar, it does not working either :(( -Original Message- From: Zeeshan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 6:18 PM To: Tomcat Users List Subject: Re: JDBC Driver Installation Rename your file to classes12.jar and restart tomcat. Regards Zeeshan

Re: JDBC Driver Installation

2002-10-02 Thread Zeeshan
That is weird. Can you send your exact stack trace of the exception? Zeeshan - Original Message - From: Jun [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002 5:46 PM Subject: RE: JDBC Driver Installation I did that, it could see the other pages

Re: JDBC Driver Installation

2002-10-01 Thread Zeeshan
Rename your file to classes12.jar and restart tomcat. Regards Zeeshan - Original Message - From: Frank Liu [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 3:12 PM Subject: Re: JDBC Driver Installation Is it a bug that tomcat can't recognize

Re: JDBC Connnection Pool for Oracle

2002-09-27 Thread Zeeshan
now going to try things in Ryan's email. Will update soon. Thanx Zeeshan - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, September 27, 2002 7:13 AM Subject: Re: JDBC Connnection Pool for Oracle Zeeshan: To correct this issue

Re: JDBC Connnection Pool for Oracle

2002-09-27 Thread Zeeshan
Hi Felipe, Do you have any details or nay link about it? Zeeshan - Original Message - From: Felipe Schnack [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, September 27, 2002 5:19 AM Subject: Re: JDBC Connnection Pool for Oracle Why don't you use oracle's own

Re: JDBC Connnection Pool for Oracle

2002-09-27 Thread Zeeshan
()); oracleDataSource.setUser(getDbUser()); oracleDataSource.setPassword(getDbPassword()); connection = oracleDataSource.getConnection(); Am I doing anything wrong here? It has been working fine, just not doing any connection pooling. Thanx Zeeshan - Original Message - From: Felipe Schnack [EMAIL PROTECTED

Re: JDBC Connnection Pool for Oracle

2002-09-27 Thread Zeeshan
Ryan, I couldn't get JNDI to work and still getting that naming exception. However, by oracle.jdbc.pool.OracleConnectionCacheImpl connection pooling is working now :) Thanx a lot to all of you. Zeeshan - Original Message - From: Ryan Cornia [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: JDBC Connnection Pool for Oracle

2002-09-27 Thread Zeeshan
miagi, Yes, that's what I m doing now and it is working fine. I gave up on using JNDI and now I realize that I don't really need to use JNDI. I will also try your second alternative using dbConnectionBroker. This way i can use it for nay database. Thanx a lot. Zeeshan - Original Message

JDBC Connnection Pool for Oracle

2002-09-26 Thread Zeeshan
in advance Zeeshan Java Code ctx = (Context) new InitialContext().lookup(java:comp/env); if (ctx!=null) { dataSource = (javax.sql.DataSource) ctx.lookup(jdbc/datasource); connection = dataSource.getConnection(); } Server.xml Resource name=jdbc/datasource auth=Container type