I use java and spring to write data in Oracle database.
Code like:
org.springframework.jdbc.core.support.JdbcDaoSupport.getJdbcTemplate.
update(String sql, Object[] args) ;
All args are String. Sometimes I receive error:
java.sql.SQLException: setString can only process strings of
less than 32766 chararacters
What can I do in this situation?
Thanks.
I have an example,the sql is:
the configuration is below:
the code: