Hi All
I need to insert a very large text formed by appendng names.So i created table with Column as Clob
When I try to insert this
string using
pStmt.setString() method,i get the foll error
java.sql.SQLException: Data size bigger than max size for this type:
I know that i have the pStmt.setClob() method available, but string can't be cast as Clob.How do i achieve this?
Please note that i have to form the string by appending,no other way out.
SHane