StringReader reader1 = new StringReader(myString);
Connection conn=DriverManager.getConnection(ORACLE_URL, ORACLE_uid, ORACLE_password);
String sql=“insert into CLOB_TEST (ID,discription) values (?, ?)”;
PreparedStatement pst=conn.prepareStatement(sql);
pst.setLong(1, id);
pst.setCharacterStream(2, reader1, myString.length());
pst.executeUpdate();
#Integration-Server-and-ESB#webMethods#webMethods-General