Programming Tutorials

Comment on Tutorial - How connection pooling works in Java and JDBC By Ramlak



Comment Added by : Dan

Comment Added at : 2012-02-22 09:48:46

Comment on Tutorial : How connection pooling works in Java and JDBC By Ramlak
Assume scenario:
- i have set connection pool size as 5 in my application.
- when 5 users access my app all 5 connections will be utilized from the pool.

What if user 6 access the app & still all 5 users are currently using the app.
My understanding is 1 connection will be used by 1 thread/user. Correct me if i'm wrong.

Thanks,
Dan


View Tutorial