Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Read from an XML file into a stored procedure or code
Message
From
04/03/2003 23:35:50
 
 
To
04/03/2003 15:36:25
Alvin Lourdes
Children and Youth Services Cluster
Toronto, Ontario, Canada
General information
Forum:
Visual Basic
Category:
Other
Miscellaneous
Thread ID:
00761162
Message ID:
00761345
Views:
26
There are various ways to do it, one good approach is using XMLDOM object
here is a small piece from msdn
Dim xmlDoc
Dim currNode

Set xmlDoc = CreateObject("microsoft.xmldom")
xmlDoc.async = false
xmlDoc.load("c:\books.xml")
Set currNode = xmlDoc.documentElement.childNodes.item(1)
MsgBox currNode.xml
you can read a xml into a SP also,though i find it quite restrictive, have a look at OPENXML function in SQL 2000
Best Luck..
Nilesh
Previous
Reply
Map
View

Click here to load this message in the networking platform