|
-
Jan 4th, 2004, 10:17 AM
#1
Thread Starter
Registered User
xml to dataset
<watchFolders>
..........<folder path="C:\test"/>
..........<folder path="C:\New Folder"/>
</watchFolders>
if that is my xml file
and i say
dim dataset as new dataset()
dataset.readxml("c:\xmlFile.xml"
what is the structure of the data in the dataset?
for example, what kind of tables, columns or rows does it create?
-
Jan 4th, 2004, 10:57 AM
#2
Sleep mode
A hint , loop through Tables , Columns , Rows objects after calling ReadXML method .
-
Jan 4th, 2004, 05:03 PM
#3
The easiest way to tell is to open the xml file in the IDE and switch to data view. The dataset will be exactly like that.
-
Feb 9th, 2004, 06:43 AM
#4
Lively Member
how do you do that ? i'm new to xml and i can;t get it to read into a dataset i doing something wrong but i don't anything so it's all proberly wrong?
-
Feb 9th, 2004, 12:33 PM
#5
Sleep mode
Easy ,
VB Code:
YourDS.ReadXML("XMLFILE")
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|