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

It is possible to execute the following PreparedStatement:

PreparedStatement s = conn.prepareStatement("select 'a' as a; select 'b' as b");
s.execute();

That is, the statement can contain more than one SQL statement.

However, if I call s.getResultSet(), it only takes the first query into consideration (the one returning "a"). How can I get the last ResultSet from this statement?

share|improve this question
Why don't you split the statements? – ssedano Oct 27 '11 at 13:05
provide some examples, why you need to use more than one statement? – Siva Charan Oct 27 '11 at 13:13
What database? Some databases and/or JDBC drivers do not support multiple queries in one call or multiple resultsets. – Mark Rotteveel Oct 27 '11 at 13:41

1 Answer

up vote 2 down vote accepted

You may use a getMoreResults()which moves to this Statement object's next result,and implicitly closes any current ResultSet object(s) obtained with the method getResultSet and then again calling getResultSet().

share|improve this answer

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.