megabyte214
Programmer
I am trying to use the replace function to replace a single quote " ' " with a backwards single quote " ` ".
This code produces a compile error:
Error: PLS-00103: Encountered the symbol "`" when expecting one of the following:
. ( ) , * @ % & = - + < / > at in is mod not rem
<an exponent (**)> <> or != or ~= >= <= <> and or like between ||
Any suggestions as to what I am doing wrong?
Code:
tempT := replace(SRCSTR => tempT,OLDSUB => ''',NEWSUB => '`');
This code produces a compile error:
Error: PLS-00103: Encountered the symbol "`" when expecting one of the following:
. ( ) , * @ % & = - + < / > at in is mod not rem
<an exponent (**)> <> or != or ~= >= <= <> and or like between ||
Any suggestions as to what I am doing wrong?