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 are the ddl statements?
Explain the locking system in jdbc & its types?
What is Connection Pooling ??? How we set up a particular connection within connection pooling ????
What is Statement and PreparedStatement? whatz the difference?
What is jndi lookup?
How to set the attribute concurrency in resultset?
How transactions are performed using JDBC ?
What are common JDBC Exceptions?
How can I determine where a given table is referenced via foreign keys?
What is jdbc and why is it required?
What are database warnings in jdbc and how can we handle database warnings in jdbc?
how we can remove hard code in java?