create xml table

vincentnl

Active member
Joined
Mar 29, 2003
Messages
40
Location
Netherlands
I am new to XML and had some trouble making a database based on xml.

(xml file for simple records)

I created an xsd containing a simple element.The problem that occurred was that I only could fill the structure once. It can only contain one root element.

I can not add multiple instances.

solution i found was to create a dataset. Now a xsd and vb file is generated.

What xml-tags allow multiple instances ( so i can make a table, in stead of single element)
 
XML can only have one root node. You normally stick your tables and/or rows under that. If you create a DataSet, you can see its XML representation by using:
myDataSet.GetXml()

or write it to a file with

myDataSet.WriteXml()

-Nerseus
 
Back
Top