Does sapdb support multiple resultsets?

"Eduardo L?pez" <[email protected]>
Newsgroups gmane.comp.db.sapdb.general
Message-ID <[email protected]>
[...]

Statement stm;
ResultSet rs;
[...]
this.stm = database.getJdbcConnection().createStatement();
this.stm.setMaxRows(100);
[...]
boolean moreResults = this.stm.execute(sql);
if (moreResults ) {
   rs = this.stm.getResultSet();
[...]
moreResults  = !(!rs.getStatement().getMoreResults() &&
(rs.getStatement().getUpdateCount() == -1)); // THE RESULT IS EVER FALSE!!!
while (moreResults) {
     rs = rs.getStatement().getResultSet();
    while (rs.next())
    [...]
}
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.