Hi!

I've a class that execute a query to a database and the returns the
ResultSet to JSP.
After the ResultSet was returned I got this error:

[EmbeddedCatalinaServiceSX] StandardWrapperValve[jsp]: Servlet.service() for
servlet jsp threw exception
java.io.NotSerializableException: org.jboss.pool.jdbc.ResultSetInPool

I'm running JBoss 2.4.2 and Tomcat 4.0.

try {
   Statement stmt = this.dbConnection.createStatement() ;
   ResultSet rs = stmt.executeQuery("SELECT * from  users") ;
   .
   .
   .

   return rs ;

  } catch (SQLException e) {
   .
   .
   .
  }

Any idea ??

Regards,

Papo


_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to