XML Tables?

  • Thread starter Thread starter Able
  • Start date Start date
A

Able

Dear friends

The XML format for reading from .Net is as this:
<?xml version="1.0" standalone="yes"?>
<dataroots>
<Table1>
<ID />
<Name />
</Table1>
</dataroots>

Is it possible to implement one more table, ex. Table2 in the same XML file
and if so how is the format?

Regards Able
 
The easiest way to check this out is to create a two table dataset and
export it to XML and see what it looks like.

I think you can just add the second table below the first table
<table><table><table2></table2>. I'm not sure whether the DataSet would need
a schema for more than one table or not though. Try it out...

+++ Rick ---

--

Rick Strahl
West Wind Technologies
http://www.west-wind.com/
http://www.west-wind.com/weblog/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top