Hi,
I have a database table and I want to create a XML FILE using the data in the table.
My xml structure is as below.
<?xml version="1.0" encoding="UTF-8"?>
<Employees>
<Employee>
<FirstName>nananenene</FirstName>
<LastName>ghfhgf</LastName>
<Age>26</Age>
<Organization>dsdsfsf</Organization>
</Employee>
<Employee>
<FirstName>werrrrr</FirstName>
<LastName>cfddee</LastName>
<Age>27</Age>
<Organization>ffrttgg</Organization>
</Employee>
</Employees>
Please help me.
I have tried to create the same by the sample xml is getting generated in the target xml folder.