How we say that PreparedStatment is Precompiled? where it
will be compiled?
Answer Posted / paks chaudhary
prepared Statements are compiled at database server side.
Once the statement is passed to the database the Statement
is parsed for valid 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.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the types of statements in jdbc?
What is SQL Warning? How to retrieve SQL warnings in the JDBC program?
What are drivers available?
What is meant by jdbc and odbc?
How can I know when I reach the last record in a table, since JDBC doesn't provide an EOF method?
What is the benefit of having jdbcrowset implementation? Why do we need a jdbcrowset like wrapper around resultset?
Explain about Join?
Explain the life cycle of jdbc.
What is serialization and deserialization in java programming?
Give an example of code used for setting up connection with a driver.
What are the differences between execute, executequery, and executeupdate?
What is db client?
Is possible to open a connection to a database with exclusive mode with JDBC?
How to connect html page to database using jdbc?
How to use JDBC API to call Stored Procedures?