Re: Connection Pool

2004-12-02 Thread Pranav Lal
Hi, I remember reading something about Oracle having its own connection pooling. Pranav At 07:09 AM 11/30/2004, Campano, Troy wrote: If you use Apache Tomcat, you can use it's built-in connection pooling libraries (which is Jakarta Commons DBCP). Here's an example... http://www.tigersleep.com/ViewA

Re: Connection Pool

2004-12-01 Thread Martin Gainty
) Etats Unis / US 001-617-852-7822 From: Ananthalakshmi Subramaniyam <[EMAIL PROTECTED]> Reply-To: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Connection Pool Date: Tue, 30 Nov 2004 13:46:14 +0530 MIME-Ve

Re: Connection Pool

2004-11-30 Thread Ananthalakshmi Subramaniyam
ently Asked Questions: http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#36_00 Thanks, H.Ananthalakshmi. From: Edward King <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Connection Pool Date: Tue, 30 Nov 2004 13:46:23 +0800 Mr Ananthalakshmi Where can I g

Re: Connection Pool

2004-11-29 Thread Partha Ranjan Das
:[EMAIL PROTECTED] > Sent: Tuesday, November 30, 2004 11:08 AM > To: [EMAIL PROTECTED] > Subject: Re: Connection Pool > > Hi, > > Are you using Oracle JDBC 2.0 Driver and Jdk 1.3 or greater? > Why can't you try the oracle connection pool, built-

Re: Connection Pool

2004-11-29 Thread Ananthalakshmi Subramaniyam
t;[EMAIL PROTECTED]> Reply-To: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Connection Pool Date: Thu, 9 Dec 2004 08:33:54 -0800 yes i can give you the Connection Pool code I have developed for oracle database

Re: Connection Pool

2004-11-29 Thread sandeepK
yes i can give you the Connection Pool code I have developed for oracle database. Sandeep Katiyar - Original Message - From: "Edward King" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 29, 2004 5:30 PM Subject: Connection Pool > Hello every, > I want to use Connec

Re: Connection Pool

2004-11-29 Thread Campano, Troy
If you use Apache Tomcat, you can use it's built-in connection pooling libraries (which is Jakarta Commons DBCP). Here's an example... http://www.tigersleep.com/ViewArticle.php?article=8 If you need more specific examples or help, let me know. Thanks! ~ Troy Campano ~ -Original Message---

Re: Connection pool

2003-02-27 Thread Asif.Raj
protomatter.sourceforge.net -Original Message- From: Deepak [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Connection pool Hi Can anyone tell me where I can get jdbc connection pool code or library? any urls will be helpful or if anyb

Re: Connection Pool

2002-07-15 Thread Mohamed Reyas M.S
The use of resources which are expensive to obtain, should be minimised. But sometimes it cannot be avoided all together. So the better strategy is to reuse the expensive resources as much as possible, once obtained. JDBC Connections are expensive resources and obtaining them is a time-consuming o

Re: Connection Pool

2002-07-15 Thread Ritesh Gupta
Hi Aruniima, You can find some useful information at : http://developer.java.sun.com/developer/technicalArticles/J2EE/pooling/ Hope that helps. Regards, Ritesh - Original Message - From: Aruniima Chakrabarti <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 15, 2002 2:59 PM

Re: Connection Pool

2002-07-15 Thread 崔 建偉
the pool is a storage which can store N conncections when you want to connecte to the DB you first ask for Pool. if there is a spare connection in the pool .you can use it directly. othersize you.d connection to the DB which take time. you can write a simple connection pool. - Original Messag

Re: connection pool

2001-01-30 Thread S P
Hi, Weblogic Application server provides you connection pooling facility. You just have to set some properties in weblogic.properties file. as weblogic.jdbc.connectionPool.OraclePool=\ url=jdbc:oracle:thin:@192.168.168.100:1521:deep,\ driver=oracle.jdbc.driver.OracleDriver,\

Re: Connection Pool

2001-01-08 Thread Sachin S. Khanna
One possible approach could be to create a instance of your ConnectionPool class in a servlet and then place the instance in the servlet context. Then other jsp pages could acess the ConnectionPool Object using the implicit application object. Don't forget to have the servlet loaded by the webserv

Re: Connection Pool

2000-09-15 Thread wang ysh
you can access to the http://webdevelopersjournal.com/columns/connection_pool.html for detail information. --- Angela Chow <[EMAIL PROTECTED]> wrote: > Hi all, > We learned about the concept of using Connection > Pool > in JSP application. Can someone help to tell me > what > is the connection p

Re: Connection Pool

2000-08-01 Thread Khem Chand Sachdeva
We have got enough copies of ur question. If somebody knows he will respond back to u. Diwakar Killamsetty wrote: > Hi, > > I am novice to EJB Technologies. > Is there any way to create connection pool in Reference Implementation? If > so please let me know how to do. > Thanks in advance. > > r

Re: Connection Pool

2000-08-01 Thread Matthews,Paul
Is it REALLY necessary to post simple questions multiple times across multiple lists? Especially when (i) it can be answered with a simple search. (ii) it has been answered in this forum before quite recently Go to www.excite.com, type in 'java connection pooling' and follow the first link (java

Re: Fwd: Re: Connection Pool

2000-06-30 Thread Sanjay Gomes
CTED]> >To: [EMAIL PROTECTED] >Subject: Fwd: Re: Connection Pool >Date: Fri, 30 Jun 2000 07:08:14 PDT > >I already have the properties file setup the way u had specified, > >I have the login bean for the initial database connection, then i get the >username and password ent

Re: Connection Pool

2000-06-30 Thread Jaffa, Dan
: Friday, June 30, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: Fwd: Re: Connection Pool I already have the properties file setup the way u had specified, I have the login bean for the initial database connection, then i get the username and password entered and compare it with the values specified in

Re: Connection Pool

2000-06-30 Thread Raman Ravikumar
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Rupali Bains Goswami Sent: Friday, June 30, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: Fwd: Re: Connection Pool I already have the properties file setup

Fwd: Re: Connection Pool

2000-06-30 Thread Rupali Bains Goswami
ages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Connection Pool >Date: Fri, 30 Jun 2000 09:30:19 -0400 > >I am a little confused by your question but I will tell you what we have >been doing > >In our EJB's and

Re: Connection Pool

2000-06-30 Thread Robert Nicholson
There connection pools are setup via JNDI I think so you want to get the database and call getConnection on the datasource. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Rupali Bains Goswami > Sent:

Re: Connection Pool

2000-06-30 Thread Jaffa, Dan
I am a little confused by your question but I will tell you what we have been doing In our EJB's and Beans we use the following code to connect to the database. Once we connect and retrieve all the necessary data we close the connection. I am using Weblogic Type II Oracle Driver. This code shoul

Re: * Connection POOL *

2000-05-16 Thread Germán López Castro
Hola, Antonio. La verdad es que hoy no tengo muchas ganas de escribir en inglés, así que contesto a tu correo en la lengua del cid. Yo utilizo las connection poolsb que ofrece el servidor web caucho resin, a través de la clase DBPool, y funciona perfectamente. Si ya tienes otro servidor web y

Re: Connection Pool

2000-04-13 Thread Chun, Byung (GEAE, Elano)
further calls to the method never reach the synchronization code and its associated overhead. Regards, Jin -Original Message- From: Radhakrishnan, Sanjay (c) [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: Re: Connection Pool Hi Thomas

Re: Connection Pool

2000-04-13 Thread Radhakrishnan, Sanjay (c)
Hi Thomas, I have 2 questions, 1. the protected instance in the Singleton class should be static right? and Im sure thats what you meant. 2. Also shouldn't you make both the get and put methods thread safe. You've mentioned that only the Put method should be thread safe.

Re: Connection Pool

2000-04-04 Thread Craig R. McClanahan
"Radhakrishnan, Sanjay (c)" wrote: > I am trying to set up a connection pool for my JSP Project. Now I know that > there are few ways to implement a connectionpool. My first thought was to > put in the the servlets init method,But then what do i do for my other > servlets/JSPs, do i create a con

Re: Connection Pool

2000-04-04 Thread Matt Atwater
I am trying to figure out how to submit to a method within a bean from a jsp form page. I am using Tomcat 3.1beta for my engine. Any help would be appreciated. Matt Atwater Celestial Seasonings === To unsubscribe: mailto [

Re: Connection Pool

1999-12-05 Thread Sasha Nakhimovsky
cs, i.e., dbUrl, username and password. > -Original Message- > From: D. J. Hagberg [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 03, 1999 5:13 PM > Subject: Re: Connection Pool > > > Cory L Hubert wrote: > > > > Ok. I am on a roll now. I

Re: Connection Pool

1999-12-03 Thread D. J. Hagberg
Cory L Hubert wrote: > > Ok. I am on a roll now. I am trying to setup a Connection Pool. I have > a few samples. But I don't know where to put it in my project. Should I > put it in the Beans? Or should I just make one connectionpool jsp file and > include it in all the pages? > >

Re: Connection Pool

1999-12-03 Thread Geert Van Damme
I use a Singelton class ConnectionHandler to manage my connection pools. This ConnectionHandler has static methods to get and close a connection. When you get a connection you really get a wrapper for a connection (but it implements sql.connection itself as well.) the close method of the wrapper d