You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by bu...@apache.org on 2003/10/01 15:19:32 UTC

DO NOT REPLY [Bug 23542] - [PATCH/BUG] Better handling of CLOB in esql (get-xml) and handling of Oracle 'temporary lobs'

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23542>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23542

[PATCH/BUG] Better handling of CLOB in esql (get-xml) and handling of Oracle 'temporary lobs'





------- Additional Comments From tomasz.bech@bull.com.pl  2003-10-01 13:19 -------
(patch to patch :) )
Forget that select can return also non-temporary lob.
So patch for point 2 should be:
//ORACLE temporary lob problem patch start
if (dbClob.getClass().getName().equals("oracle.sql.CLOB"))
  if (dbClob.getClass().getMethod("isTemporary", new Class[0]).invoke(dbClob,
new Object[0]).equals(new Boolean(true)))						  	    
dbClob.getClass().getMethod("freeTemporary", new Class[0]).invoke(dbClob, new
Object[0]);
//ORACLE temporary lob problem patch end