Connection Pooling with different type of databases?
Answer / pradeep
u can configure the connection pooling in program..
Javax.naming.IntialContext ic=new
javax.naming.IntitialContext();
javax.sql.Datasource ds=ic.lookup("jndi name");
Connection con=ds.getConnection();
| Is This Answer Correct ? | 1 Yes | 3 No |
how to get value in combo for updation?
What is the relationship between the canvas class and the graphics class?
how to search the pertical objects in a Collections
Define aop(assepct oriented programing)?
how can we load a file of a user in the database table?
Where can I find seam examples and documentation?
What is the diffrence between a local-tx-datasource and a xa-datasource?
If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?
What is a clone?
What you mean by COM and DCOM?
Give me simple example of hibernate caching and explain the details of caching????? thanks in adv.
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!