I need it beacuse:
 
The following code works with Jboss3.2.1 properly: 

ResultSet rest = prepStmt.executeQuery(); 
while (rest.next()){ 
blob = ((OracleResultSet)rest).getBLOB(3); 

but with Jboss4.0 one exception is thrown. 
I have searched for some solution in topics and I found the following solution: 
blob = 
((OracleResultSet)(((ResultSetInPool)rest).getUnderlyingResultSet())).getBLOB(3); 

But my problem is that I am not able to find the ResultSetInPool class in the jars. 
Has it existed yet? How could I solve this OracleResultSet problem?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3849981#3849981

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3849981


-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to