Results 1 to 2 of 2
- 03-28-2011, 06:11 PM #1
Senior Member
- Join Date
- May 2010
- Posts
- 113
- Rep Power
- 0
how do i read a clob data from a function written in oracle in java code
Hi ,
I have a stored procedure written in oracle which returns a clob data .
How can i get the clob data into the file in java.
here is my code ....pls help me with any changes i have to do , so that it works.
Thank You in Advance for all the kind help in time .
Java Code:// The extract table now contains data in it. CallableStatement proc_stmt; try { FileOutputStream fos; fos = new FileOutputStream(new File(OutputFile),false); Writer out = new OutputStreamWriter(new BufferedOutputStream(fos)); proc_stmt = connection.prepareCall("{? = call PKG_EXTRACTION_DATA.F_CREATE_HEADER(?)}"); // Register the type of the return value proc_stmt.registerOutParameter(1,OracleTypes.VARCHAR); // proc_stmt.registerOutParameter(1,OracleTypes.CLOB); proc_stmt.setString(2,user_id); // Execute and retrieve the returned value proc_stmt.execute(); // String retValue = proc_stmt.getString(1); Clob retValue = proc_stmt.getClob(1); // out.write(retValue.toString()); //get the character stream of our CLOB data // Reader reader = retValue.getCharacterStream(); char[] buffer = new char[1]; while(reader.read(buffer) > 0) { out.write(buffer); } // out.write(retValue); out.write("\r\n"); proc_stmt.close();
- 03-29-2011, 08:59 AM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,448
- Rep Power
- 16
Similar Threads
-
I need some java / html code written
By DeDanan in forum New To JavaReplies: 2Last Post: 03-01-2011, 09:36 AM -
How to get a clob file from data base and pass one instance of that file to another
By hipintu in forum Advanced JavaReplies: 7Last Post: 02-11-2011, 06:38 AM -
how read a data from a cheque scanner in java
By prabhug1987 in forum NetworkingReplies: 0Last Post: 12-03-2010, 11:39 AM -
How to insert/update Date field in Oracle with java code
By sasi.tati in forum AWT / SwingReplies: 2Last Post: 07-28-2010, 04:14 PM -
Oracle sqlldr in JAVA code
By digioleg in forum JDBCReplies: 4Last Post: 08-25-2009, 08:31 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks