What are the parameters used in Connection pooling?
Answer / ashwani
Parameters used in Connection Pooling are:-
Min Pool Size,
Max Pool Size,
Connection Lifetime ,
Connection Timeout,
Incr Pool Size ,
Decr Pool Size ,
| Is This Answer Correct ? | 5 Yes | 0 No |
INTERVIEW QUESTION FOR ANDROID
What is the difference between class & structure?
use of wrapper classes?
What is garbage collection in Java, and how can it be used ?
32 Answers Accenture, HCL, Infosys, Sara, SITS, TCS, Wipro,
How you can create a radio buttion using Checkbox class?
public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?
what is the purpose of the wait(), notify(), and notifyall() methods? : Java thread
When is an object in the mean to garbage collection?
I want to print “hello” even before main is executed. How will you acheive that?
How many types of JVM's (OR) Name of the JVM's which are used in Tomcat & Weblogic servers ?
What is difference between local variable and global variable?
What is cloneable interface?