C#中怎么创建一个DataSet对象

C#中怎么创建一个DataSet对象,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

成都创新互联10多年成都企业网站定制服务;为您提供网站建设,网站制作,网页设计及高端网站定制服务,成都企业网站定制及推广,对隧道混凝土搅拌车等多个方面拥有丰富的网站推广经验的网站建设公司。

1. 启动 Microsoft Visual Studio .NET。在文件菜单上,单击新建,然后单击项目。从 Visual C# 项目类型中选择Windows 应用程序。默认情况下创建 Form1。

2. 在视图菜单上,选择工具箱以显示“工具箱”,然后向 Form1 中添加一个按钮。

3. 双击Button1。将出现该窗体的代码窗口。

4. 将下面的using 指令添加到 Form1.cs 顶部:

using System.Data.OleDb;  using System.Xml;

5.将下面的私有成员变量添加到 Form1 类中:

private string strConn =Provider=Microsoft.Jet.OLEDB.4.0;  Data Source= + C:\\Program Files\\Microsoft Office\\Office10\\Samples\\ + Northwind.mdb;;

注意:您可能需要修改连接字符串中 Northwind.mdb 的路径,以便与您安装的位置相匹配。

6.在button1_Click 处理程序中添加以下代码:

  1. //Connect to the data source.OleDbConnection objConn = 
    new OleDbConnection (strConn);  

  2. try{  

  3. objConn.Open();  

  4. //Fill a dataset with records from the Customers table.OleDbCommand objCmd = 
    new OleDbCommand(Select CustomerID, CompanyName, ContactName+ Country, 
    Phone from Customers, objConn);  

  5. OleDbDataAdapter objAdapter = new OleDbDataAdapter();  

  6. objAdapter.SelectCommand = objCmd;  

  7. DataSet objDataset = new DataSet();  

  8. objAdapter.Fill(objDataset);  

  9. //Create the FileStream to write with.System.IO.FileStream fs = 
    new System.IO.FileStream(C:\\Customers.xml,System.IO.FileMode.Create);  

  10. //Create an XmlTextWriter for the FileStream. System.Xml.XmlTextWriter xtw = 
    new System.Xml.XmlTextWriter(fs, System.Text.Encoding.Unicode);  

  11. //Add processing instructions to the beginning of the XML file, one  

  12. //of which indicates a style sheet.xtw.WriteProcessingInstruction
    (xml, version='1.0');  

  13. //xtw.WriteProcessingInstruction(xml-stylesheet,  

  14. // type='text/xsl' href='customers.xsl');  

  15. //Write the XML from the dataset to the file.objDataset.WriteXml(xtw);  

  16. xtw.Close();  

  17. //Close the database connection.  

  18. objConn.Close();  

  19. }  

  20. catch (System.Exception ex)  

  21. {  

  22. MessageBox.Show(ex.Message);  

关于C#中怎么创建一个DataSet对象问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。

文章名称:C#中怎么创建一个DataSet对象
地址分享:https://www.cdcxhl.com/article18/isjcgp.html

成都网站建设公司_创新互联,为您提供ChatGPTApp开发外贸建站微信小程序网站改版微信公众号

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

手机网站建设