Mauro
|
| Posted: 11/11/2002, 6:36 AM |
|
How can I disable connection pooling in servlet+template?
I need to do this because some applications use old pl/sql packages
that store infos in oracle session.
TIA
Mauro
|
|
|
 |
Andrew B
|
| Posted: 11/12/2002, 3:06 PM |
|
Conneciton pooling is generally a function of the database package and is set globablly, though jdbc may be different. As it is, you will see such a performance hit w/o it that it would be a pretty bad idea to turn it off. I would look for other workarounds.
|
|
|
 |
Mauro
|
| Posted: 11/13/2002, 3:00 AM |
|
I'm using oracle jdbc thin driver class oracle.jdbc.driver.OracleDriver
which doesn't do connection pooling.
I saw generated code from codecharge and it manually handle connection pooling,
but I wasnt't able to disable it.
Any suggestion?
Mauro
|
|
|
 |
|