tim,
As far as I can see you are doing everything right. Except for one small
thing.
you cast the resultSet directly to OracleResultSet, but the object is
actually org.jboss.minerva.jdbc.ResultSetInPool. Its a cind of warper.
You can get the OracleResultSet by calling getUnderlyingResultSet().
Put something like the folloing:
ResultSetInPool r = (ResultSetInPool)resultSet;
oracle.sql.CLOB clob =
(oracle.sql.CLOB)((OracleResultSet)r.getUnderlyingResultSet()).getClob(1);
This solves the problem.
Raicho.
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
List Help?: [EMAIL PROTECTED]