What are JDBC statements?

Answers were Sorted based on User's Feedback



What are JDBC statements?..

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

What are JDBC statements?..

Answer / prasad rao

These are the JDBC Statements:-

1) Statement
2) PreaparedStatement
3) CallableStatement

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

Explain in detail about JDBC and its general features?

0 Answers  


What is jdbc drivers in java?

0 Answers  


What is jdbc and odbc?

0 Answers  


What happens if we don't close the connection in jdbc?

0 Answers  


Which is faster jdbc or odbc?

0 Answers  






What is the use of statement in jdbc?

0 Answers  


Where jdbc drivermanager class is used?

0 Answers  


What is “dirty read” in JDBC? Which isolation level prevents dirty read?

0 Answers  


What are different types of JDBC Drivers?

0 Answers  


What is phantom read and which isolation level prevents it?

0 Answers  


Explain about the drive manager class working?

0 Answers  


What are the differences between resultset and rowset?

0 Answers  


Categories