i have a bean with attribute of datatype java.sql.Clob. How do i set the value of the clob object in the bean? the value is a string which is from a jsp form.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I figured out the solution myself.
Instead of having the attribute as java.sql.Clob i changed the data type to java.lang.String data type and then changed the parameter mapping in the ibatis.xml to #clobValue:CLOB# which in turn converted the String to CLOB.