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,\
        initialCapacity=5,\ (no. of connections)
        maxCapacity=10,\
        props=user=weblogic;password=weblogic,\
weblogic.allow.reserve.weblogic.jdbc.connectionPool.OraclePool=everyone
weblogic.allow.reset.weblogic.jdbc.connectionPool.OraclePool=everyone
weblogic.allow.shrink.weblogic.jdbc.connectionPool.OraclePool=everyone

U can use any other type of JDBC drivers for connection pooling. But be sure
that u specify the classpath of the driver properly as it may create
problems.

Connection pooling facility is also provided by few webservers such as
Netscape Enterprise Server 3.6, but I am not very sure as I never used them.

>From: Ehab Taleb <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>     reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: connection pool
>Date: Tue, 30 Jan 2001 12:45:27 -0500
>
>hi
>do i have to implement connection pool manager in my application even if i
>am using weblogic as my webserver
>dose weblogic already has connection pool manager
>can some body put some light on this subject and
>which of the webservers out there give us this featue without implementing
>it
>thanks
>
>===========================================================================
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to