I have been asked to extract data from XML File using NODE NAME. I am new to XML and I do not know how to identify or understand what is NODE NAME.
This is the XML File content, Please show me what is NODE NAME and Data. Thank You.
This is the XML File content, Please show me what is NODE NAME and Data. Thank You.
Code:
]<?xml version="1.0" encoding="utf-8"?> <!--File Exported on 21/05/2010 12:26:48 p.m.--> <table> <row> <CustomerID>CHOPS</CustomerID> <CompanyName>Chop-suey Chinese</CompanyName> <OrdDate>01/03/2010</OrdDate> <ReqDate>02/03/2010</ReqDate> <ShipDate>03/03/2010</ShipDate> <TransFee>7555.55</TransFee> </row> <row> <CustomerID>CHOPS</CustomerID> <CompanyName>Chop-suey Chinese</CompanyName> <OrdDate>03/03/2010</OrdDate> <ReqDate>04/03/2010</ReqDate> <ShipDate>05/03/2010</ShipDate> <TransFee>123.45</TransFee> </row> <row> <CustomerID>CHOPS</CustomerID> <CompanyName>Chop-suey Chinese</CompanyName> <OrdDate>03/03/2010</OrdDate> <ReqDate>04/03/2010</ReqDate> <ShipDate>05/03/2010</ShipDate> <TransFee>987.65</TransFee> </row> </table>
Comment