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 |
How do I find whether a parameter exists in the request object?
Does jpa use jdbc?
what is meant by connection pooling?
What is metadata in programming?
how to use CallableStatement? specially how to use their index given ..
What are the advantages of collection pools?
I have written a program to connect to database using odbc.Can this Application run on any Platform????
How to achieve JDBC Connection Pooling using JDBC DataSource and JNDI in Apache Tomcat Server?
List the advantages of using datasource?
What is an advantage of using the jdbc connection pool?
What is jdbc connection interface?
What is PreparedStatement?