That error means that, if you follow the flow through your method, you will never reach that statement, no matter which path you take.  Basically, you need to reevaluate your code, not your concept.
  (*Chris*)
----- Original Message -----
Sent: Tuesday, September 24, 2002 6:40 AM
Subject: [SERVLET-INTEREST] return two CachedRowSet

In the remote method declaration, I'm creating to CachedRowSet object and I'm using
 
return crset1;
return crset2;
 
to send them to the client, but I receive following error message during the compilation;
 
ReisImpl.java:63:unreachable statement
            return crset2;
            ^
1 error
 
How can I return two CachedRowSet object to the servlet?

Reply via email to