Re: [OT] WAS Connection Pool

2002-11-18 Thread Adolfo Miguelez
[EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 14:27:32 -0400 All you can do with WLS is define the driver class. You can't define a data source class to replace

Re: [OT] WAS Connection Pool

2002-10-16 Thread Adolfo Miguelez
] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 09:45:06 -0700 (PDT) On Tue, 15 Oct 2002, Adolfo Miguelez wrote: Date: Tue, 15 Oct 2002 16:21:24 + From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: [OT] WAS Connection Pool

2002-10-15 Thread Kris Schneider
-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 11:48:37 -0400 If it works anything like WLS, you'll get an instance of a class that implements Connection, but it won't be an instance

Re: [OT] WAS Connection Pool

2002-10-15 Thread Adolfo Miguelez
Thin classes12.zip. Perhaps you are right. Do you know how to do it? I do not want to use the DriverManager directly since it does not uses pooled connections (AFAIK?). Maybe telling WAS to use an Oracle pool rather tha WAS pool. Anyone know how? Adolfo. From: David Graham [EMAIL

RE: [OT] WAS Connection Pool

2002-10-15 Thread Stefan.Landro
I think there is support for jdbc 2.0 in Oracle 9i - including pooling -Original Message- From: Adolfo Miguelez [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 15. Oktober 2002 17:23 To: [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Thin classes12.zip. Perhaps you are right. Do

Re: [OT] WAS Connection Pool

2002-10-15 Thread David Graham
] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 15:23:13 + Thin classes12.zip. Perhaps you are right. Do you know how to do it? I do not want to use the DriverManager directly since it does not uses

Re: [OT] WAS Connection Pool

2002-10-15 Thread Kris Schneider
If it works anything like WLS, you'll get an instance of a class that implements Connection, but it won't be an instance of OracleConnection. Adolfo, do you want to read or write the structs/arrays? For reading, you should be able to use java.sql.SQLData to generically handle data retrieval.

Re: [OT] WAS Connection Pool

2002-10-15 Thread Adolfo Miguelez
Graham [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 09:34:05 -0600 I'm not familiar with the WAS pool but I thought that connection pooling was accomplished via the DataSource interface

RE: [OT] WAS Connection Pool

2002-10-15 Thread Adolfo Miguelez
. Adolfo From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 17:25:40 +0200 I think there is support for jdbc 2.0 in Oracle 9i - including pooling -Original Message- From: Adolfo

Re: [OT] WAS Connection Pool

2002-10-15 Thread Adolfo Miguelez
Schneider [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 11:48:37 -0400 If it works anything like WLS, you'll get an instance of a class that implements Connection

RE: [OT] WAS Connection Pool

2002-10-15 Thread Shekhar Jain
We were experiencing a ClassCastException because we were including the jdbc2_0-stdext.jar file in our build. IBM support asked us to take that out and things have worked smoothly since then. If this doesn't fix your problem you might want to give a little more detail about the error you are

Re: [OT] WAS Connection Pool

2002-10-15 Thread Craig R. McClanahan
On Tue, 15 Oct 2002, Adolfo Miguelez wrote: Date: Tue, 15 Oct 2002 16:21:24 + From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Firsly, thanks for your response: Yeah, I knew

Re: [OT] WAS Connection Pool

2002-10-15 Thread David Graham
and would then return the correct type of Connections. Dave From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [OT] WAS Connection Pool Date: Tue, 15 Oct 2002 16:09:46 + The point is that WAS pool returns