atom feed11 messages in org.apache.commons.devRE: Question about DBCP
FromSent OnAttachments
Steve CohenApr 29, 2002 9:29 pm.txt
Brekke, JeffApr 30, 2002 7:03 am 
Eric PughApr 30, 2002 7:19 am 
Eric PughApr 30, 2002 7:25 am.java
AnjanApr 30, 2002 9:41 am 
Eric PughApr 30, 2002 10:18 am 
Eric PughApr 30, 2002 10:30 am 
Craig R. McClanahanApr 30, 2002 11:06 am 
Anjan BacchuApr 30, 2002 11:40 am 
Eric PughApr 30, 2002 1:53 pm 
Craig R. McClanahanApr 30, 2002 2:19 pm 
Subject:RE: Question about DBCP
From:Eric Pugh (epu@upstate.com)
Date:Apr 30, 2002 10:18:37 am
List:org.apache.commons.dev

Thanks for the info,

I guess the whole JOCL thing was scaring me.. What is JOCL? It appears to be some sort of weird config format only used by DBCP? I guess I didn't want to try and figure it all out (lazy me!)... Also, DbForms uses the Digester to parse an XML file, and DBForms tanks if I add in Xalan/Xerces with Digester in the classpath.. I was hoping to keep things simple, but I will look at the JOCLPoolingDriverExample.

Did you basically just use the example as your code? I'm trying to solve a problem without customizing/writing much at all!

Lastly, is there any way to have a monitor on the pool size?

Eric

-----Original Message----- From: Anjan [mailto:anj@bluewireless.com] Sent: Tuesday, April 30, 2002 12:42 PM To: Jakarta Commons Developers List Subject: RE: Question about DBCP

Hi Eric!,

I was using poolman in our NON open-source product but eventually moved to DBCP -- it works fine for me.

Did you look at JOCLPoolingDriverExample.java in the doc directory ? This gives a sample of how the DriverManager uses the "jdbc.drivers" property.

When DriverManager loads, it looks for the property jdbc.drivers and then loads all the drivers specified in this property(Be sure to separate the drivers in this property using COLONs and NOT SEMI-COLONs. You don't have to use Class.forName() on it since JDBC(1.2 JDK and later) uses this property to load all the drivers and initialize the drivers(actually the drivers register with the DriverManager when they are loaded).

If you want to know more, you can look into the source of DriverManager in the JDK source. You will know that pooling is working by the speed with which the connections are obtained when you use DriverManager.getConnection(url);

-----Original Message----- From: Eric Pugh [mailto:epu@upstate.com] Sent: Tuesday, April 30, 2002 7:20 AM To: 'Jakarta Commons Developers List' Subject: Question about DBCP

Hi all,

Can anyone provide pointers to open source sites using DBCP? I am trying to get DBCP to work with DbForms (www.dbforms.org). DbForms currently uses Poolman as it's suggested pool for JDBC connections, but it badly needs something newer and easier to set up!

I have managed to tweak the class ManualPoolingDataSourceExample to work with MSSql Server. However, what is confusing to me is how in the example my jdbc driver is passed in? I see it goes in from the commandline as -Djdbc.drivers=oracle.jdbc.driver.OracleDriver, but I never see how it get's used. In addition, when i hardcoded my driver, I couldn't get it to work until I added a Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver") at the top of the code in my copy of ManualPoolingDataSourceExample.

Can someone give me some pointers on how the -Djdbc.drivers value actually get's registered with the DriverManager?

Also, how can I verify that I am actually pooling connections, versus creating a new one over and over?

I have attached my copy of ManualPoolingDataSourceExample that I have renamed to ManualPoolingDataSourceTest, and am using under JUnit to test.

Eric