Pools in weblogic have a nice feature called "init sql" that will run a statement when the connection is created. We use the feature to run a command like this in Oracle when the pool creates a connection:
alter session set current_schema=TABLE_OWNER_SCHEMA
where TABLE_OWNER_SCHEMA is the schema containing most of the application's tables. Our applications need to login as a user that...
Hi,
I use proxool-0.9.1.jar and in my case I open a connection that needs to make a lot of insert statement.
But after 5-6 minutes I receive this exception:
1-set-2009 16.15.55 org.logicalcobwebs.proxool.HouseKeeper sweep.
When I use 0.90RC3 or 0.83 jar, my code works fine.
But if I upgrade to 0.91, my code will cause a severe problem.
I found that 0.91's file size is much smaller than other.
It's good thing. But it should still contain all necessary classes.
Log:
Servlet.service() for servlet action threw exception
java.lang.ClassNotFoundException: org.logicalcobwebs.cglib.proxy.Callback
at...