Exception while using .setClob()

373 Views Asked by At

I want to insert a String via a Java Program into Oracle DB in a table having column type as CLOB. I am using the following code

 PreparedStatement stmt=conn.prepareStatement("insert into Json_Test values(?,?)");
 stmt.setInt(1,counter);
 stmt.setClob(2,new StringReader(s));

But while executing i am getting an Exception: java.lang.Exception: 1 - oracle.jdbc.driver.OraclePreparedStatementWrapper.setClob(ILjava/io/Reader;

1

There are 1 best solutions below

0
On

Can you say jdbc version you are using? It works correctly to me with

dependency>
    <groupId>com.oracle</groupId>
    <artifactId>ojdbc6</artifactId>
    <version>11.2.0.3</version>
</dependency>