Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: CLOB problem in JAVA

Re: CLOB problem in JAVA

From: Dariusz Dudek <ddudek77_at_nospamgazeta.pl>
Date: Tue, 26 Jul 2005 09:45:27 +0200
Message-ID: <dc4pmn$e7m$1@inews.gazeta.pl>


You can try diffrent way to create CLOB in database.

INSERT INTO TAB(ID,TXT)
VALUES(1,EMPTY_CLOB())
java.sql.ResultSet rset = ...
oracle.sql.CLOB lob = (oracle.sql.CLOB )rset.getClob(2); OutputStream lobOut = lob.getBinaryOutputStream();

Dariusz Dudek Received on Tue Jul 26 2005 - 02:45:27 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US