What is the use of prepared statement?Ans:used to execute
pre compiled statement...so the question is when that
precompiled statement will be execute or
comiple?................

Answers were Sorted based on User's Feedback



What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / suri

when we sent a sql stmt in to oracle sever the server
splits statemts in to mutiple stmts, checks wheather valid
or not, if it is valid it is stored in the shared pool,
where as in the normal stmt parsing will be done every time
in prepared parsing will be done only once, naxt time
onwards values will be sent to the place holders

Is This Answer Correct ?    7 Yes 0 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / anjani kumar jha

prepared statement work same as the statement,but there r
some differences.

wen u submitting the query first time following things happened
1)compiling the query
2)executing the query
3)sending results back to the program

2nd time onwards
1)executing the query directly
2) sending results back to the program

Is This Answer Correct ?    6 Yes 1 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / narasimha rao bodagala

Hey this is an interface.

in the jdbc API they designed all the interface. which you
can use any interface based on that you can create the
implemented class method.

for this you can call in the core java design
pattern..abstract factory pattren..

you can try to see the API you can understand more.

preparedstatement---pre compiled statement.

first time it's compile and second time it will pass
dynamically.

make sure that should be done in DB side only once.

one time compile and next time passing the values into the
query then execute.

overall story behind this one time compile many times execute.

Is This Answer Correct ?    3 Yes 0 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / nagashree

Prepared statements are used due to its 2 advantages.

Advantages:
1) We can give dynamic values.
2) The statement will be compiled only once, it need not be
compiled each & every time we give new values.

Is This Answer Correct ?    3 Yes 2 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / ricky

can someone tell me how does preparedstatement works? its
an interface and where is the implementation?

Is This Answer Correct ?    1 Yes 0 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / syed sadhik

It’s just pre compile SQL while run time it’s execute query.

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More JDBC Interview Questions

What driver should I use for scalable Oracle JDBC applications?

0 Answers  


what is the meaning of following code snippets Class c=class.forName(driverClassName); Driver d=(driver)c.newInstance();

1 Answers  


What is database connection pooling? Advantages of using a connection pool?

0 Answers  


What are the steps involved in establishing a connection using jdbc in java?

0 Answers  


Why do we need jdbc api?

0 Answers  






Which interface handles transaction management in jdbc?

0 Answers  


What is a jdbc connection pool?

0 Answers  


How to invoke Oracle Stored Procedure with Database Objects as IN/OUT?

0 Answers  


Is jdbc faster than hibernate?

0 Answers  


What are the utilities of the callablestatement?

0 Answers  


How can we move the cursor in a scrollable result set?

0 Answers  


What are the three basic components of the odbc architecture?

0 Answers  


Categories