Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Extracting an XML file to CSV or DBF
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
01107438
Message ID:
01107470
Vues:
17
Hi, Gerald,

Just off the top of my head...if you're using the VFP OLE DB provider, you could do something like this...
DataSet dsData = new DataSet();
dsData.ReadXml("c:\\MyXMLFile.XML");
Once it's in a dataset, and if you're using the VFP OLE DB Provider, you can scan through the table objects/row objects/column objects and write the data out to a VFP table. (If your program "knows" the eventual structure to the DBF file, you could put CREATE TABLE statements into the .NET code, using the VFP Provider).

Kevin
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform