new to xml schemas

new to xml schemas

am 31.12.2007 10:34:06 von tshad

I am trying to read an xml document into a dataSet and am unsure how to set
it up.

If I have a document such as:



One Microsoft Way
1
Redmond
WA
98052


I want there to be one table: Address and each record would be the "tag"
lines. The line would have a name (such as "street" or "city") a value
(such as ""One Microsoft Way") and a possible attribute or 2 (such as flag).

I would want the table to be something like:

street 5 One Microsoft Way
number 1
city Redmond
state 25 WA
zip 98052

There is more to this but this would be the first cut.

I tried:






type="xs:string" />





I didn't expect this to work and it didn't. What I got was:

Italy 0

How would I change this to make this work?

Thanks,

Tom