I'm using JDBC service Execute sql statement.I will explain with simple
code: insert into mytable (id, desc) values (1, 'this is Client
document');This works perfect.But if I have single quotes in the desc -
insert into mytable (id, desc) values (1, 'this is Client's
document');It's throwing error to stalled operation errors. I know that
in Oracle, to escape single quotes we write insert into mytable (id,
desc) values (1, 'this is Client''s document'); But, we cant control
here in Adobe as the d...