Don't have any knowledge on the stderr msgs, but sometimes debugging is a
painful process of narrowing the offending code in a method or module with
println statements.  I know - been doing it for 2 days now trying to figure
out why my resultset in

conn = getConnection( isPooled );
stmt = conn.createStatement();
rset = stmt.executeQuery( sql );
                        
if( rset.next() ) {
  clob = rset.getClob( 1 );
}
int clobSize = ( new Long( clob.length() ).intValue() );
char[] buffer = new char[ clobSize ];
clobStream = clob.getCharacterStream();
clobStream.read( buffer );
clobString = new String( buffer );

is returning a single CLOB when my SQL (verified in PL/SQL) is returning 3.
It's been a PITA!

Mark

-----Original Message-----
From: Ryan Cuprak [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 11, 2002 9:45 AM
To: Struts Users Mailing List
Subject: Re: Error message - not sure of meaning or significance.


Well, I have wrapped the offending page in a try catch with 
system.out.print but I still get the same darn exception and no output 
from my system.outs. So, back to digging... Those entries on standard 
error in the email are new though... (I think)

-Ryan

On Friday, October 11, 2002, at 09:40 AM, Galbreath, Mark wrote:

> Learn the mystical art of "System.out.println()."  :-(
>
> -----Original Message-----
> From: Ryan Cuprak [mailto:[EMAIL PROTECTED]]
> Sent: Friday, October 11, 2002 9:33 AM
>
>   BTW: How do I get exception traces for servlet errors. I am trying to
> track down a "servlet exception" in one of my tiles - all I get on the
> page is a "servlet exception and the path to the tile (jsp page).
> Looking through the logs in jboss I don't see any exception trace. I am
> not sure if the above error is related.
>
> --
> To unsubscribe, e-mail:   
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: 
> <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to