Hi,
I am storing in my Oracle SQL database table string field with tag values having '<' and '>'. when I try to to retrieve them for Xmlhttp request the values displayed are '<' and '>'. How can I prevent this conversion and display '<' and '>' symbols?
I used the following functions that I found but did not work(Also tried using xmlgen but it did not work form me)
select UTL_I18N.UNESCAPE_REFERENCE(string_field) from test where id='123'
Here the string_field column of test table of type Char has the value <test><tags>ABC<test><tags>
and I want to display the same value with out < and > being replaced by < and >.
How is it possible?