What are JDBC statements?
Answers were Sorted based on User's Feedback
Answer / vikas
JDBC Statements are Interfaces & are of three types.
1. statement
2. preparestatement
3. callable statement
in this preparestatement extends the statement interface and
callable statement extends preparestatement
you can create only one query using statement and you can
pass multiple queries through preparestatement and if we
have to call procedure from database then use callable statment.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / prasad rao
These are the JDBC Statements:-
1) Statement
2) PreaparedStatement
3) CallableStatement
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the reason why we need a jdbcrowset like the wrapper around resultset?
give me a java code snippet to connect Microsoft excel through.... I am trying alot... plz help me.
What is JDBC Driver interface?
What are the differences between stored procedure and functions?
Under what circumstances, that all four drivers are used?
What is the return type of class.forname() method?
What is JDBC Connection isolation levels?
How to get a whole row of data at once?
After creating conntinpool in weblogic how to write the code in programe where i can use that pool object in the programe connecting to the database and how to debug programe withou eclipse
Explain the locking system in jdbc & its types?
What are the different classes through which JDBC represents statements?
Hi to all.. well i want to make a standalone application which can use the concept of connection pooling, constraint is that i have not to use any application server like weblogic etc. Please help me out. Thaks in advance.