Answer Posted / suraj kumar
1. Connection pooling can improve the response time of any
application that requires connections, especially Web-based
applications.
2. The characteristics of the pool can be changed without
affecting the application (e.g pointing to different vendor's
database (Oracle, MySQL) without changing any code)
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is the difference between a static and a non-static inner class?
Name three component subclasses that support painting?
Difference between new operator and class.forname().newinstance()?
Explain RMI Architecture?
When a thread blocks on i/o, what state does it enter?
Why a component architecture for the java platform?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
Explain the advantages and disadvantages of detached objects.
What are externizable interface?
What is the argument type of a programs main() method?
What is the purpose of the wait() method?
What is RMI and what are the services in RMI?
Why a client should be multithreading? Explain.
How database connectivity in XML is achieved?
Why are my checkboxes not being set from on to off?