vote up 2 vote down star
1

Background:
I have a collegue who needs to convert text from a PL/SQL method into XML compliant text, as he is constructing a excel spreadsheet by updating a text template.

flag

68% accept rate

5 Answers

vote up 3 vote down check

Well, if you just want to convert XML characters, you'll want to do something like...

  outgoing_text := DBMS_XMLGEN.CONVERT(incoming_text)

Where outgoing_text and incoming_text are both VARCHAR2 or CLOB.

You can specify a second argument, but it defaults to DBMS_XMLGEN.ENTITY_ENCODE... it can also decode XML entities by passing DBMS_XMLGEN.ENTITY_DECODE as a second argument.

link|flag
Thanks that sorted it all apart from a pound symbol which is probably a character set issue somewhere. – Bravax Jan 21 at 16:12
vote up 1 vote down

In addition to dbms_xmlgen, you can use the sql method, xmlelement and then extract the value back out.

select extract(xmlelement("mytest",my_variable),'mytest/text()') from dual;

The xmlelement function will make the text XML compliant, then using the extract function, it will extract the text out as is. (Note: The extractValue function will convert the text back to the non-XML compliant version.).

link|flag
vote up 0 vote down

With respect to Rulas's issue on Oracle Forms, there are a lot of things Forms can't do (in various versions), where you need to use a database package.

So write a database PL/SQL function that does the dbms_xmlgen and return a varchar2 or clob, depending on the size of your XML. Then you can call that function from Forms. when you get the data back into Forms, use text_io or webutil to push the XML file to Excel.

Or stay over on the database side and use utl_file to push the XML output to a directory where you can get at it.

link|flag
vote up 0 vote down

hamischmcn option is easy and clear but it does not work in oracle forms, I tried a lot using that and nothing...you can generate the xml manually, using something like this

utl_file.put_line_nchar (file_id, 'xml version="1.0" encoding="utf-8"');

utl_file.put_line_nchar (file_id, 'Start');

--A FOR LOOP WHERE YOU DEFINE YOUR TAGS

utl_file.put_line_nchar (file_id, '/Start');

Note: Editor does not allow me to put the < > signs in the xml and tags title

link|flag
Thanks, but i'm looking at something which will encode text i.e. convert characters into their xml compliant characters. – Bravax Jan 21 at 10:45
vote up 1 vote down

Later versions of oracle have a built in XML package for manipulating XML data.
For example, is this the sort of thing your colleague wants to do?:

SELECT DBMS_XMLGEN.getXML('SELECT * FROM emp') FROM dual;
link|flag
That's quite useful, as it produces an entire xml fragment, however I was looking for something which converted text into xml without including the enclosing tags. – Bravax Jan 21 at 10:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.