What is a PreparedStatement?
Answers were Sorted based on User's Feedback
Answer / umamaheswari
PreparedStatement used to send SQL Statement to the Database
It not only contains the SQL Statement ,but also the
precompiled SQL Statement.It means that when the
PreparedStatement is executed ,the DBMS just run the SQL
Statement without compiling it
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ganesan
If you want to execute a Statement object many times, it
normally reduces execution time to use a PreparedStatement
object instead.
| Is This Answer Correct ? | 5 Yes | 1 No |
What is jdbc resultsetmetadata interface?
Are all the required JDBC drivers to establish connectivity to my database part of the JDK?
What are cursor attributes?
Write an sql to find all records having all upper case alphanumeric characters in a field ?
What is a rollback in jdbc?
How does a custom RowSetReader get called from a CachedRowSet?
What is JDBC RowSet? What are different types of RowSet?
What is connection pooling? What Method and class used for Connection pooling in Java?
What is data source in java?
how can we get the metaData (columnNames) from a table which has no Records..
write down exceptions those appear in java programs when u write JDBC Programs?
What are the basic exceptions in jdbc?