第一个示例方法:

1 SqlConnection conn = new SqlConnection();2 conn.ConnectionString = "Server=127.0.0.1;User ID=sa;Password=fdahgdrethj31313210212121;Database=northwind;Persist Security Info=True";3 conn.Open();4 SqlDataAdapter da = new SqlDataAdapter("select * from 表", conn);5 SqlCommandBuilder thisBulder = new SqlCommandBuilder(da);6 DataSet ds = new DataSet();7 da.Fill(ds);8 ds.WriteXml(@"C:\temp.xml");

第二个示例方法:

1 private void WriteXmlToFile(DataSet thisDataSet)2 {3 if (thisDataSet == null) { return; }4 // Create a file name to write to.5 string filename = "myXmlDoc.xml";6 // Create the FileStream to write with.7 System.IO.FileStream myFileStream = new System.IO.FileStream8 (filename, System.IO.FileMode.Create);9 // Create an XmlTextWriter with the fileStream.10 System.Xml.XmlTextWriter myXmlWriter =11 new System.Xml.XmlTextWriter(myFileStream, System.Text.Encoding.Unicode);12 // Write to the file with the WriteXml method.13 thisDataSet.WriteXml(myXmlWriter);14 myXmlWriter.Close();15 }

更多相关文章

  1. XML入门教程-属性声明代码示例
  2. 在XML模式中扩展枚举列表的示例代码详解
  3. 详细介绍(javascript+asp)XML、XSL转换输出HTML的示例代码
  4. XML解析之DOM4J解析的示例代码
  5. XmlDocument操作xml文档的示例代码
  6. XML概述以及Pull解析的示例代码
  7. 详细介绍Linq读取XML的示例代码
  8. 使用PULL解析XML文件时循环过程的示例代码分享
  9. 详细介绍XML阅读器的示例代码

随机推荐

  1. 基于协程的爬虫
  2. 从字典中创建NumPy数组的最佳方法是什么?
  3. 如何使用未受标头影响的python导入csv文
  4. c++与python关于二维数组的数据传递问题,
  5. 模拟登录QQ空间
  6. excel表中没有数据
  7. 如何因Django不活动而终止会话?
  8. CentOS6的python2.6升级到python2.7以上
  9. python3 自定义比较函数
  10. 在jupyter笔记本中使用ipywidgets