We are fetching records from oracle database and all the records containing a single quote (') gets replaced to '
However, in the code we have specifically mentioned that the single quote should be replaced by "'" -
result = result.replace(
"'", "'");
& is getting replaced with & automatically. How can we handle this so that & remains as it is?
Note: replacing & to & is not working.
Regards,
Sakshi Anand.
Sakshi,
we have too little information to help you out here. What is your context? Are use using a custom service? Are you using the DBService?
Thomas
Thomas,
I have got the issue. I am working on custom service and was missing a code.
Thus, the issue is resolved now.
Thanks & Regards,
Sakshi Anand.
Originator said the problem was solved.