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 |
The new features of the JDBC 2.0 API, will be supported for JDBC-ODBC Bridge?
is java pure object oriented or not ?
Which Driver is preferable for using JDBC API in Applets?
Explain about DSN?
what is meant by connection pooling?
What do you mean by two phase commits?
How do you know which driver is connected to a database?
List some new features available in jdbc 4.0?
When does the result for an sql statement return null?
Explain about the drive manager class working?
What are drivers available?
What is isolation level? How to set it?