-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Does Oracle LOBs support streams ?
PostPosted: Thu Nov 30, 2006 5:08 pm 
Newbie

Joined: Tue May 17, 2005 8:39 am
Posts: 14
Hi

I am using Hibernate 3.2, Oracle 10g XE and
latest version (10.2.0.2) of thin jdbc driver (ojdbc14.jar). I would like to read from a CLOB using a stream, but it seems impossible. I can read from a CLOB using a Reader, it reads all 18kb of data I have stored there. But all streams return -1, if I try to read them and available() returns 0.

Code:
       
Report report = (Report) session.load(Report.class,reportName);

Clob reportXml = report.getReport();
Blob reportCompiled = report.getJasper();
       
SerializableClob sclob=(SerializableClob) reportXml;
CLOB oclob = (CLOB) sclob.getWrappedClob();
       
try
{
  log.warn(sclob.getAsciiStream().available());   // 0
  log.warn(oclob.getAsciiStream().available());   // 0
  log.warn(oclob.getAsciiStream(0).available());   // 0
  log.warn(oclob.asciiStreamValue().available());   // 0
  log.warn(oclob.binaryStreamValue().available());   // 0
  log.warn(oclob.getStream().available());          // 86
} catch(Exception ex) {}


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.