What is the difference between ExecuteUpdate and
ExecuteQuery?

Answers were Sorted based on User's Feedback



What is the difference between ExecuteUpdate and ExecuteQuery?..

Answer / anji

executeUpdate() - is used to update or modify the table, it
will returns howmany rows added/updated in the table.

executeQuery() - is used to retrieve the data from the
table. only for "select" query, this will return a
Resultset metadata

Is This Answer Correct ?    42 Yes 2 No

What is the difference between ExecuteUpdate and ExecuteQuery?..

Answer / vishnuvardhan

ExecuteUpdate method will return integer value.
ExecuteQuery method will return ResultSet value.

Is This Answer Correct ?    45 Yes 7 No

What is the difference between ExecuteUpdate and ExecuteQuery?..

Answer / balu

executeUpdate() --is used for executing non-select
statements

executeQuery() - is used for executing select statements

The above two are valid in SQLServer
Note: but i think in case of Oracle executequery()may also
accept non-select statements

Is This Answer Correct ?    19 Yes 2 No

What is the difference between ExecuteUpdate and ExecuteQuery?..

Answer / fiza

when we seach any record from database we call the execute
query and when we write in database we call the update
method

Is This Answer Correct ?    15 Yes 3 No

Post New Answer

More Servlets Interview Questions

what is multiple server?

0 Answers  


can it possible to validate form field before execution of a servlet service method if yes how??

6 Answers  


What are the supporting protocol by HttpServlet ?

0 Answers  


Whether thread can be used in servlets?

0 Answers  


How do you communicate in between Applets and Servlets?

0 Answers  






List out difference between a JavaBean from a Servlet?

0 Answers  


What is webservlet?

0 Answers  


Write the code to get the server information in servlet.

0 Answers  


What are session variable in servlets?

0 Answers  


What is a parser. What does a parser do with a XML? Why do we need it?

1 Answers  


What are the advantages of servlets over traditional cgi?

0 Answers  


When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?

0 Answers  


Categories