Cách đơn giản nhất là chỉ cần sử dụng
stmt.setString(position, xml);
các phương thức (dành cho các chuỗi "nhỏ" có thể dễ dàng lưu giữ trong bộ nhớ Java) hoặc
try {
java.sql.Clob clob =
oracle.sql.CLOB.createTemporary(
connection, false, oracle.sql.CLOB.DURATION_SESSION);
clob.setString(1, xml);
stmt.setClob(position, clob);
stmt.execute();
}
// Important!
finally {
clob.free();
}