Following is the API documentation for getNextResultSet() method of Class
ExecutionContext
(http://www.ifs.uni-linz.ac.at/ifs/teaching/java/sqlj/doc/runtime/javadoc/):
"Moves to the currently registered statement's next result. The first time
this method is called after a SQL operation is executed, the first
side-channel result set is returned (if any). "
Does someone know what "side-channel" result set is?
TIA
Raquel.
Joe Weinstein - 05 Jul 2004 18:15 GMT
> Following is the API documentation for getNextResultSet() method of Class
> ExecutionContext
[quoted text clipped - 5 lines]
>
> Does someone know what "side-channel" result set is?
There is no such concept in JDBC. If a statement returns a series of result
sets and/or update counts, they will come in the order the SQL/procedure sends
them, and to iterate from one to the next, you call getMoreResults(). SQLJ
will do that.
Joe
> TIA
> Raquel.