@tonkuma Thank u very much for your reply. I tried
Code:
call MYPROC('insert into myTable(col1,col2) values(''abcdef'', ''01-01-11'') ')
but it doesnt seem to work.
@stolze
Thank u very much. Escaping nested single quotes with single quotes worked brilliantly.
So this works:
Code:
call MYPROC(' insert into myTable(col1,col2) values(''abcdef'', ''01-01-11'') ')
Now Suppose the proc's definition is changed to
Code:
MYPROC(IN IN_SQL CLOB(1M))
In this case how would we call the proc , again if we have to pass a query? Would escaping the nested single quotes work again? Thanks in advance.