THis is because of the data. If the name/data contains '(single quote ) then wM prepare mail formed SQL as follows
Insert into supllier ( name,address) values ( ‘Fred’s’,‘add1’);
so you need to append one more quote whenver a single quote appear in the data .
then the insert query become as follows which would execute smoothly
Insert into supllier ( name,address) values ( ‘Fred’‘s’,‘add1’);
regards
murali
#Universal-Messaging-Broker#webMethods#broker#Integration-Server-and-ESB