Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my code I am using

String query= "delete all from myTable";
stmt.executeQuery(query);

Ideally for DML executeUpdate should be used instead. However, executeQuery too works well. So, was curious to know what could be the harm of using executeQuery instead of executeUpdate?

share|improve this question

2 Answers

up vote 1 down vote accepted

First, you don't get the number of updated row.

Second, depends on the JDBC driver, your query may be failed.

share|improve this answer
what if i dont need to know that? – Vik Oct 14 '10 at 9:42
You can use the method if you insist to do that and there is no bad effect you can observe. But doing that means you also ready to modify the application if the JDBC driver get updated (and bahave differently). – nanda Oct 14 '10 at 9:45

It does not tell you how many rows were affected.

It creates a ResultSet (or maybe not?) of questionable value.

And are you sure that this works well with all databases? The Javadoc says that the driver can throw an SQLException if "the given SQL statement produces anything other than a single ResultSet object", for which DELETE probably qualifies.

If you really do not know if you are about to run a query or DML, you could use execute(), which works for both, and then lets you call getUpdateCount or getResultSet and even getMoreResults.

share|improve this answer
i dont need all the databases to work with. just oracle db – Vik Oct 14 '10 at 9:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.