XML Data Source
The second data Source is the DTP (Data Tools Project) XML Data Source. The XML Data Source is a driver that allows developers to use XML files as a Data Source.
Let's say we have an XML file containing some entries with employee information. We want to use this XML data file as a Data Source for a report. The XML file looks like the following:
<?xml version="1.0" encoding="UTF-8"?> <Employees xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Employee> <firstName>John</firstName> <lastName>Ward</lastName> <jobTitle>Developer</jobTitle> </Employee> <Employee> <firstName>Bunson</firstName> <lastName>Honeydew</lastName> <jobTitle>Professor</jobTitle> </Employee> <Employee> <firstName>Bert</firstName> <lastName></lastName> <jobTitle>Fuzzy Muppet</jobTitle> </Employee> <Employee> <firstName>Ernie</firstName...