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?