There is an alternative. When using the execSQL service
Set the $dbSQL to insert into table_A ( field_1, field_2, field _3 ) values ( ?,?,?)
and then use the input $dbParamNames stringlist to specify the names of the three input variables. Also use $dbParamTypes stringlist to specify their datatypes.
When you execute the service it will stuff the first parameter in the first ? slot, the second in the second and thr third in the third slot. Datatypes are also converted properly. so you dont run into these kinds of problems.
#Integration-Server-and-ESB#Flow-and-Java-services#webMethods