I am refitting existing production code to use dbcp BasicDataSource for connection pooling instead of a home grown connection pooler.
A big problem has arisen in that running against Oracle the dbcp.DelegatingResultSet is returning a clob which getClass().getName() says is an oracle.sql.CLOB but instanceof does not recognize as such. java.sql.Clob sqlClob = rs.getClob( i + 1 ); String temp = sqlClob.getClass().getName(); // is 'oracle.sql.CLOB' if(sqlClob instanceof java.sql.Clob) // is TRUE if(sqlClob instanceof oracle.sql.CLOB) // is FALSE when running with dbcp This code works without using dbcp. Any ideas? thx john __________________________________ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
