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 |
Difference between Generic Servlet and HTTP Servlet?
How can I retrieve a String or other object type without creating a new object each time?
What is jdbc stand for?
Name the new features added in jdbc 4.0.
is java pure object oriented or not ?
Is jdbc a protocol?
What is meant by connection string?
What are different types of transactions?
What is type 4 jdbc driver?
what are design patterns?
Explain creation of statement object with connection method create method with help of an example.
How to get the Database server details in java program?