What is a Connection?
Answer / devarathnam c,kotagudibanda(po
Hi...Actually Connection is an interface in JDBC API.
Which provides the communication b/n the frontend and
backend
| Is This Answer Correct ? | 2 Yes | 0 No |
What is jdbc and its advantages?
How to find that, a row is updated or not?
What is the use of the statement in jdbc?
What do you understand by jdbc driver and explain its types?
Explain the process of creating tables using NetBeans IDE?
Does the JDBC-ODBC Bridge work with Microsoft J++?
How can I use the JDBC API to access a desktop database like Microsoft Access over the network?
What should be done for auto generating primary key id in a table ?
What protocol does jdbc use?
How to find total column from a resultset?
what is meant by connection pooling?
Statement, PrepareStatement and Callable all these are interfaces. Thought it is a interface how come we are creating objects and calling methods("preparestatement()") in it. In which class this method is defined. Please let me know. Thanks in advance. example: PreparedStatement pre = con.prepareStatement( "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");