I have a PL/SQL procedure that takes a parameter
. This value is inserted into a DB field as a new row.
Unfortunately, if the user pass in
which contains the special character ', it would fail!
What do I do? I tried "'", but that didn't work either!
Code:
insertVal
Unfortunately, if the user pass in
Code:
insertVal
What do I do? I tried "'", but that didn't work either!