I generally don't just ask very general help questions but I am at a loss. Using 2007, I need to export a table/query to specific xml format. The vendor has provided an xsd file. However, I need to transform the table in Access into the xml format required.
From what I understand, I need to use an xslt file to map the table fields to the xml field. However, I have no idea how to build one that will do this.
My table has the following fields:
FirstName
LastName
DOB
COB
AdminDate
PersonType
For each row, I need output to a single xml file that looks like this:
<person>
<PersonFirstName></PersonFirstName>
<PersonLastName></PersonLastName>
<DateofBirth> </DateofBirth>
etc...
</person>
The table contains 50 fields all of which have to be exported. If I understand things correctly, using an xslt file to transform the table would be the easiest. I am just not sure how to go about it.
Is there a tool to create the xslt? Can I use the xsd file?
Thanks.
From what I understand, I need to use an xslt file to map the table fields to the xml field. However, I have no idea how to build one that will do this.
My table has the following fields:
FirstName
LastName
DOB
COB
AdminDate
PersonType
For each row, I need output to a single xml file that looks like this:
<person>
<PersonFirstName></PersonFirstName>
<PersonLastName></PersonLastName>
<DateofBirth> </DateofBirth>
etc...
</person>
The table contains 50 fields all of which have to be exported. If I understand things correctly, using an xslt file to transform the table would be the easiest. I am just not sure how to go about it.
Is there a tool to create the xslt? Can I use the xsd file?
Thanks.