Answer Posted / 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 |
Post New Answer View All Answers
How do you determine the sensitivity of the ResultSet object?
What is represented by the connection object?
What are the packages are used in jdbc?
How to set NULL values in JDBC PreparedStatement?
How can we execute stored procedures?
What do you understand by jdbc driver and explain its types?
Is jdbctemplate thread safe?
Why is odbc needed?
Why would you use setautocommit(false) in jdbc?
What is jdbc driver?
What are the components of jdbc?
Why prepared statements are faster?
What is the full form of jdbc and what is its purpose?
What is a jdbctemplate?
Why jdbc is used in java?