RE: jdbc performance Orion vs. WL

2001-10-24 Thread The elephantwalker
To: Orion-Interest Subject: jdbc performance Orion vs. WL Hi all, decided to find out who is the fastest when working with DB using jdbc. I wrote a simple servlet that does the following: 1) acquires connection from the App. Server's JNDI tree and selects 7000 records from an Oracle table

RE: jdbc performance Orion vs. WL

2001-10-24 Thread Curt Smith
Did you use the ejb-location (this is the best)? Also, did you use the latest 9i jdbc drivers from Oracle? You need to repeat the test with updating and inserting. Also, create several connections at once to use the pooling feature. ejb-location ?? I'm interested in what you're saying

Re: jdbc performance Orion vs. WL

2001-10-24 Thread Kesav Kumar
Try with Oracle OCI drivers. - Original Message - From: Savotchkin Egor [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, October 23, 2001 11:05 PM Subject: jdbc performance Orion vs. WL Hi all, decided to find out who is the fastest when working with DB using

jdbc performance Orion vs. WL

2001-10-23 Thread Savotchkin Egor
Hi all, decided to find out who is the fastest when working with DB using jdbc. I wrote a simple servlet that does the following: 1) acquires connection from the App. Server's JNDI tree and selects 7000 records from an Oracle table. 2) acquires connection using DriverManager