What is the importance in context in JDBC connection pools?
Answers were Sorted based on User's Feedback
Answer / rohit
Whenever the new request comes for thr connection with the
database we do not create the new connection object instead
of that we keep the bunch of connection in apool called
connection pool.
when new request for the database, new coonection
will come out from this poool & when this req is over
connection goes back to the pool
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / poorna chandar rao.yerrabothu
in jdbc connection there is a one importent problem the
problem is creattion of jdbc connection thats why jdbc
coonection pooling
| Is This Answer Correct ? | 0 Yes | 3 No |
Why we use set in java?
What is a method declaration?
What is a singleton class? Give a practical example of its usage.
What is difference between Eclips and MyEclips?
Every class extends object but why it is not possible for every object to invoke clone() method. ideally protected methods should be accessible from sub classes. isn't it?
What is compareto () in java?
How can an exception be thrown manually by a programmer?
Difference between Array and vector?
Can size_t be negative?
Hai all I want to print given array in reverse order Ex: int a[]={1,2,3,4,5};display this array in reverse order.
Explain wrapper classes in java?
What is the purpose of static methods and static variables?