Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to transform xml (to html using xslt) file which i made when download a dataset from oracle sqldeveloper HR schema! Please help me to write xsl file which will transform my data to table!

Piece of xml

<?xml version='1.0' encoding='UTF8' ?> <RESULTS> <ROW> <COLUMN NAME="Employee_Names"><![CDATA[Steven]]></COLUMN <COLUMN NAME="Salary"><![CDATA[24000]]></COLUMN> <COLUMN NAME="STREET_ADDRESS"><![CDATA[1297 Via Cola di Rie]]></COLUMN> </ROW> <ROW> <COLUMN NAME="Employee_Names"><![CDATA[Neena]]></COLUMN> <COLUMN NAME="Salary"><![CDATA[17000]]></COLUMN> <COLUMN NAME="STREET_ADDRESS"><![CDATA[1297 Via Cola di Rie]]></COLUMN> </ROW>

All my data displays in strings not table( please help

share

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.