I want to import data from a xml file into a dataset
this is my xml file
when I use this code
dataset1.readxml(FilePath);
I have these tables in my dataset
Person,Phones,Emails,Webs
But I want to have FIVE (more) tables for Fax,Mobile,House,Email,Web
that ARE connected to "Person" table (Fax,Mobile,House are connected to Phones , Email to Emails AND Web to Webs)
when the xml file is like below it has these tables:
Person,Phones,Emails,Webs,Fax,Mobile,House,Email,Web
{ Emails connects to Email},{ Webs connects to Web } AND { Phones connects to fax,house and mobile }
I want to always have these tables
is there any way?
Sam HobbsPosted Sep 19, 2010, 11:45 PM