Oreilly
EJB by RMH talks about returning ResultSet from an EJB to the client.(Page 458-Oreilly)
My question - Is it possible to return a ResultSet from a remote method to the client? To use this resultset won't the client require the open connection that is associated with this resultset. Just serializing the resultset and sending it to the client will this maintain also the open connection?
If the above thing is possible will the client require the
JDBC driver to access this resultset that is returned by remote method?