Posted By:
Shari_Naik
Posted On:
Monday, November 19, 2001 03:19 AM
I am executing a Oracle stored procedure in java using weblogic server. The SP returns a cursor. When i try to retrive the cursor with the below statement :
rs = (ResultSet)cs.getObject(7) ;
I get a "Marshalling error". This is because oracleResultset from the package oracle.jdbc.driver is not serialized.
Is there any way of retriving the cursor in Weblogic?
*Note - The program works fine if the DB connection is not done through weblogic.
Thanks in advance.