I want to export data from my Access dataset to a XML file with the following format concept.
<?xml version="1.0" standalone="yes" ?>
- <UMZ>
- <ServerID>
<Server>PDS_SY1</Server>
<PreCS>servconnEmergencyShutdown servconnShutdown</PreCS>
<PostCS>servconnStartup</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
- <ServerID>
<Server>PDS_SY10</Server>
<PreCS>N/A</PreCS>
<PostCS>N/A</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
- <ServerID>
<Server>PDS_SY11</Server>
<PreCS>personelMondayAM3</PreCS>
<PostCS>personelMondayAM4</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
- <ServerID>
<Server>PDS_SY12</Server>
<PreCS>N/A</PreCS>
<PostCS>N/A</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
</UMZ>
Thanks
<?xml version="1.0" standalone="yes" ?>
- <UMZ>
- <ServerID>
<Server>PDS_SY1</Server>
<PreCS>servconnEmergencyShutdown servconnShutdown</PreCS>
<PostCS>servconnStartup</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
- <ServerID>
<Server>PDS_SY10</Server>
<PreCS>N/A</PreCS>
<PostCS>N/A</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
- <ServerID>
<Server>PDS_SY11</Server>
<PreCS>personelMondayAM3</PreCS>
<PostCS>personelMondayAM4</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
- <ServerID>
<Server>PDS_SY12</Server>
<PreCS>N/A</PreCS>
<PostCS>N/A</PostCS>
<PreMVS>N/A</PreMVS>
<PostMVS>N/A</PostMVS>
<Misc>N/A</Misc>
<Date_Stamp>06/09/2007</Date_Stamp>
</ServerID>
</UMZ>
Thanks