Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dbf to xml
Message
From
30/11/2006 00:34:21
 
 
To
29/11/2006 21:59:24
General information
Forum:
ASP.NET
Category:
Other
Title:
Environment versions
Environment:
VB 8.0
OS:
Windows XP
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01173564
Message ID:
01173585
Views:
8
Ryan,

Read the data into a Typed DataSet based on your .xsd. Then simply use the WriteXml() method of the DataSet.
string TestConnection = "server=(local);database=MyDataBase;uid=sa;pwd=MyPassword";
SqlDataAdapter da = new SqlDataAdapter("select * from bob", this.TestConnection);
MyDataSet ds = new MyDataSet();
da.Fill(ds, "MyTable");
ds.WriteXml("MyData.xml");
~~Bonnie



>Hi to All,
>
>
> how to export dbf file to xml data file i have a schema(xsd file) for the xml.
>
>TIA
>ryan.
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform