How we say that PreparedStatment is Precompiled? where it
will be compiled?
Answer Posted / venkatesh.t
prepared Statements are compiled at database server side.
Once the statement is passed to the database the Statement
is parsed for validness and checked weather the table exist
or not .if the statement is valid the server holds the
statement object and process the multiple request from the
client.
Finally parsing of the statement is done at server side that
to only once.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Can we return resultset in java?
What are the benefits of PreparedStatement over Statement?
How does jdbc work?
What is drivermanager in java?
What does the jdbc driver interface do?
What is the significance of DataBaseMetaData.tableIndexStatistics? How to obtain and use it?
What does the jdbc databasemetadata interface?
What is JDBC API and when do we use it?
What are the three parts of a jdbc url?
What are the new features available in jdbc 4.0?
What is isolation level? How to set it?
Name the new features added in jdbc 4.0.
What are the types of jdbc drivers that exist?
Is it possible to connect to multiple databases simultaneously?
How can I create a custom RowSetMetaData object from scratch?