What is Connection Pooling ??? How we set up a particular
connection within connection pooling ????
Answers were Sorted based on User's Feedback
Answer / muru aingaran
Connection pooling has set of database connections which is
loaded into memory once and it will be reused tat
connection whenever the query processing required without
again reconnect the database.This is called connection
pooling.
| Is This Answer Correct ? | 11 Yes | 0 No |
What is the major difference between java.util.date and java.sql.date data type?
What is Connection Pooling ??? How we set up a particular connection within connection pooling ????
Are all the required JDBC drivers to establish connectivity to my database part of the JDK?
Without using of Class.forName(? ?), how do you connect to db?
Does the JDBC-ODBC Bridge work with Microsoft J++?
What is in term of jdbc a datasource?
How many types of jdbc drivers are there?
Hi my doubt is that preparedStatement is a interface means which has no implemenation.plz go thru the code below String sql = "SELECT * FROM movies WHERE year_made = ?"; prest = con.prepareStatement(sql); prest.setInt(1,2002); ResultSet rs1 = prest.executeQuery(); Now setInt and executeQuery how it works since it is interface it does not have implementation how it works, how executeQuery returns result from database as executequery method has no implementation even in Statement interface.
4 Answers Cybermate, Hexaware,
give me a java code snippet to connect Microsoft excel through.... I am trying alot... plz help me.
What is the purpose of jdbc?
What are the different types of drivers under jdbc?
Explain how data flows from view to db and reverse