RE: Connection Pooling in Orion

2001-05-07 Thread Andre Vanha
Adrian, Use orion's admin.jar to get connection pool info. On my machine, I can type this to get stats: java -jar admin.jar ormi://localhost admin password -application default -dataSourceInfo The output looks like this: DataSource info: jdbc/xa/HypersonicXADS - cached: 0 used: 0 total: 0

Re: Connection Pooling in Orion

2001-05-05 Thread Robert Krueger
At 18:43 04.05.2001 , you wrote: I think I've correctly set up database connection pooling for my enterprise app. But how do I confirm that Orion is actually doing connection pooling for me? - look at your dbms logs (if your dbms provides such facilities) - enable tracing in your jdbc driver

RE: Connection Pooling

2001-03-27 Thread Gerald Gutierrez
Refer to Orion documentation on the data-sources.xml file. You can find the documentation links through the orionserver web site. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kesav Kumar Sent: Tuesday, March 27, 2001 10:08 AM To: Orion-Interest

RE: Connection Pooling

2001-03-27 Thread Taavi Tiirik
Have you tried adding following attributes to your data-source definition: min-connections=... max-connections=... Take a look at http://www.orionserver.com/docs/data-sources.xml.html regards, Taavi How to specify min number of connections and max number of connections in

Re: connection pooling

2001-03-15 Thread James Halloran
You need to include pooled-location="jdbc/OraclePooledDS" and look up "jdbc/OraclePooledDS" in the EJB or servlet. From: Ugur Karakaya [EMAIL PROTECTED] Reply-To: Orion-Interest [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject: connection pooling Date: Wed, 14 Mar 2001 22:13:57

Re: Connection Pooling

2000-10-16 Thread Robert Krueger
that's what the datasource absraction hides from you. what else do you need? any EJB 1.1 example will do. there are lots of books ou there (a free one at www.theserverside.com) robert At 14:19 16.10.00 , you wrote: Hi, I need to use connection pooling in one of my EJB objects and I don't

RE: Connection Pooling

2000-10-16 Thread Duffey, Kevin
Title: RE: Deleting cookies with Orion As far as I know, you will want to use DataSources, JDBC 2.0 and what not..they are standard to J2EE, so they should allow it to work. I know Connection Pooling is not Orion specific (in that it implements the J2EE standard for connection pooling). Its