Hi I am new to using XML, and have a bit of an issue. How do I define
how the XML file looks when I export a query from Access?
XML is a markup language:
http://www.w3.org/TR/2006/REC-xml11-20060816/#sec-origin-goals
That means, it is a plain text file, it uses tags.
When you export a query from Access 2003 to XML, several files with
different purpose can be generated.
1. A file with .xml extension - this is a data file, tagged so that
the data has structure. You can look at it, but it is not presentable
like an Access Report or a grid like Excel / datasheet.
2. A file with .xsd extension - this is a schema file that describes
what the fields are, what type of data is in those fields.
3. A file with a .xsl extension. - this is a programming language file
- it contains layout skeleton in HTML and vbscript chunks. This file,
if it is fed to an engine that understands it, will take the .xml file
and produce a HTML webpage.
4. A file with a .htm extension - this is a combined file which
contains stuff from the .xsl file and the .xml file. It is intended to
be opened by Internet Explorer and will then IE will digest this
content and display a rough looking grid.
All four files can opened by notepad since they are plain text files
and you can see the plumbing of the files.
Discuss more?
Ananda