WARNING: This server is unstable and will be retired in the next days. If you want to keep this forum available, please request immediately a migration on the Nabble Support forum. Forums that don't receive any migration request will be deleted forever.

 « Return to Thread: update clob failed using ibatis with no error

update clob failed using ibatis with no error

by Dhanus :: Rate this Message:

| View in Thread

Hi,
 
my table is
   variable1 varchar(4000)
   variable2 varchar(4000)
   clobvar   clob;

I am trying to read variable1, variable2 concatenate and insert into clob using ibatis and spring.

all variable are decleared String data type in bean class.

first get all records and assign to value into clob.

read table data is working good.
but update is failing and No errror.

query is good.

public String getValues(){
return variable1+variable2;
}

and assign to setClobvar(beanclass.getValues()) here getting value is in String.

only update fail.

can you please give solution.

 « Return to Thread: update clob failed using ibatis with no error