Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Read from an XML file into a stored procedure or code
Message
De
04/03/2003 23:35:50
 
 
À
04/03/2003 15:36:25
Alvin Lourdes
Children and Youth Services Cluster
Toronto, Ontario, Canada
Information générale
Forum:
Visual Basic
Catégorie:
Autre
Divers
Thread ID:
00761162
Message ID:
00761345
Vues:
25
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform