I need to store large xml data to CLOB and convert back CLOB to String
But the problem is we are using (Spring NamedParameterJdbc template)
SqlParameterSource paramSource = new BeanPropertySqlParameterSource(
positionResponsesDO);
this.jdbcTemplate.update(sql, paramSource);
Where PositionResponsesDO has get and set property
private Clob xmlData;
Now I need to convert String data (large) to Clob and Clob to String. Please suggest me best way.
I can't use File operations as it's WebApp