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 |
Is singleton set an interval?
wat is class level lock and object level lock
Explain the selection sort algorithm and state its time complexity?
What does int argc char * argv [] mean?
This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .
what is deadlock? : Java thread
What does provide mean construction?
What are the important features of Java 10 release?
What is the difference between length and size in java?
What is the difference between a loader and a compiler?
Is java a prime method?
How to make a write-only class in java?