We have a CRM solution where all metadata stored in Oracle table (don't ask me why).
I am issuing an update statement but when get the data from database I see on front end '\n' as part of the text and not new line (like HTML's <br/>
).
I was trying to put
directly in description but it shows as br/ on front end.
What escape characters should I put in my update statement instead?
UPDATE "AN_ITEM_LG"
SET LONG_DESCRIPTION = 'Some text'||chr(10)||chr(13)||'- or -'||chr(10)||chr(13)||'Some more text'
WHERE CONFIG_CODE='TCW_THIS_IS_IT'