XML and XSL in a table, how to get to HTML? [message #352655] |
Wed, 08 October 2008 18:05 |
HelloKitty79
Messages: 6 Registered: September 2008 Location: Washington, DC
|
Junior Member |
|
|
Greetings,
I need somebody's help. I have a table that contains xml files (generated from a procedure, and then inserts into table) and xsl files. I wrote the following query to generate HTML:
SELECT XMLTRANSFORM(xml.code, xsl.code).GetClobVal()
FROM t_codes xml, t_codes xsl
WHERE xml.code = 'Main XML'
and xsl.code = 'Stylesheet A';
I get all the HTML generated, except the data. What am I doing wrong?
|
|
|