escape character in insert-statement
724773Jun 21 2011 — edited Jun 21 2011Hi
I have to execute an Insert-Statements for Example
insert into tab(.......)
Values ('1','XX'XX'); ---> the character ' inside this string cause an error
insert into tab(.......)
Values ('1','XXXXX');
how to suppress the ' character in the String.
br.
MDK.