Convert Access to XML without schema
Good morning everyone, :wave:
I have done a little searching but am not familiar enough with the subject to find what I'm looking for (other than I suspect I need to learn something new!).
I have a VB 6.0 database application (Access backend). I have created an export file using...
VB Code:
recordset.save filename, adPersistXML
...to create the XML file.
The group that I send this file to has requested that I send the file without the schema. Is this possible using this method?
If not, do I need to use XMLDOM? If so, are there any good tutorials?
Or, should I wait until we convert to VB.NET (sometime in the next several months) for an even better approach?
Thanks,
Mary
Re: Convert Access to XML without schema
Its a textfile... look at the tags generated, do some string manipulation to get rid of the tag for the schema, also update the XML's DTD.