What is Statement and PreparedStatement? whatz the
difference?
Answers were Sorted based on User's Feedback
Answer / harish
When you execute a SQL query with Statement. It parses and
executes in the database each time. Where as in
PreparedStatement, first time it parses and executes and
subsequent times, it directly substitute the values in the
query and executes. It is faster than Statement
| Is This Answer Correct ? | 11 Yes | 2 No |
As harish, said prepared statement is pre-complied so it
will be very fast when compared to normal statement.when we
execute same query again and again for different set of
input data.
code snippet for this is :--
for normal statement :
Statement st = conn.createStatement();
for prepared statement :
PreparedStatement prSt = conn.prepareStatement
("query") ;
// set values for input paramenters and execute as usual.
| Is This Answer Correct ? | 2 Yes | 2 No |
What is the meaning of connection?
What is an SQL Locator?
Which is better odbc or jdbc?
Can you define a foreign key, with a key from the same table?
what are the types of result sets in JDBC 3.0 ?
Which constraint cannot be specified as an explicit constraint and should be specified with the column only ?
Explain the role of driver in jdbc.
What is correlated subquery?
0 Answers emc2, JK Technosoft,
Which is best database for java?
What are the functions of the jdbc connection interface?
wa is connection pooling? how do u create connection pooling?wat is use connection pooling?
Why are we using blob datatypes in jdbc?