clob « db2 « Java Database Q&A





1. Uploading Large Text File Into A DB2 CLOB Field    stackoverflow.com

Alrighty, I've been banging my head against the wall on this one for a while, so here it goes... I'm currently writing a Java (1.5) program that can upload very large (200MB+) ...

2. inserting string to clob using ibatis in db2    stackoverflow.com

i have a bean with attribute of datatype java.sql.Clob. How do i set the value of the clob object in the bean? the value is a string which is from a ...

3. Function sequence error when passing CLOB to DB2 Proc    dbforums.com

I have a stored proc that takes a CLOB is an input parameter. When I try to call that proc via JDBC, I get a "Function sequence error". I've tried setting the autoCommit to false as well as a number of other things with no success. Here's the code... CallableStatement l_oStmt = null; Connection l_oConn = ConnectionFactory.getConn(); l_oConn.setAutoCommit(false); l_oStmt = l_oConn.prepareCall("{ ...