Advertisement
joseleonweb

Untitled

May 4th, 2021
877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. try {
  2.   java.sql.Clob clob = oracle.sql.CLOB.createTemporary(
  3. connection, false, oracle.sql.CLOB.DURATION_SESSION);
  4.   clob.setString(1, xml); // Sent xml un String
  5.      String sql = "insert into taula (text) values (?)";
  6.   PreparedStatement stmt = con.prepareStatement(sql);
  7.   stmt.setClob(1, clob);
  8.   stmt.execute();
  9. } finally {
  10.   clob.free();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement