C#创建DataSet对象详细介绍

开发 后端
这里介绍如何C#创建DataSet对象,以及如何使用WriteXML方法将该对象包含的数据导出到 XML 文件中。生成的 XML 文件可以直接在 Excel 中打开。

C#语言有很多值得学习的地方,这里我们主要介绍C#创建DataSet对象,包括介绍在视图菜单上,选择工具箱以显示“工具箱”等方面。

本文说明如何C#创建DataSet对象,以及如何使用WriteXML方法将该对象包含的数据导出到 XML 文件中。生成的 XML 文件可以直接在 Excel 中打开。为便于说明,使用 Jet OLEDB 提供程序从 Microsoft Access Northwind 示例数据库C#创建DataSet对象。但是,类似的代码可与您使用 Visual C#创建DataSet对象一起使用。

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

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

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

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

using System.Data.OleDb;  
using System.Xml; 
  • 1.
  • 2.

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

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

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

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

//Connect to the data source.OleDbConnection objConn = 
new OleDbConnection (strConn);  
try{   objConn.Open();   //Fill a dataset with records from the Customers table.OleDbCommand objCmd = 
new OleDbCommand(Select CustomerID, CompanyName, ContactName+ Country, 
Phone from Customers, objConn);  
OleDbDataAdapter objAdapter = new OleDbDataAdapter();   objAdapter.SelectCommand = objCmd;   DataSet objDataset = new DataSet();   objAdapter.Fill(objDataset);   //Create the FileStream to write with.System.IO.FileStream fs = 
new System.IO.FileStream(C:\\Customers.xml,System.IO.FileMode.Create);   //Create an XmlTextWriter for the FileStream. System.Xml.XmlTextWriter xtw = 
new System.Xml.XmlTextWriter(fs, System.Text.Encoding.Unicode);   //Add processing instructions to the beginning of the XML file, one   //of which indicates a style sheet.xtw.WriteProcessingInstruction
(xml, 
version='1.0');   //xtw.WriteProcessingInstruction(xml-stylesheet,   // type='text/xsl' href='customers.xsl');   //Write the XML from the dataset to the file.objDataset.WriteXml(xtw);   xtw.Close();   //Close the database connection.   objConn.Close();   }   catch (System.Exception ex)   {   MessageBox.Show(ex.Message);  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.

【编辑推荐】

  1. C#使用sqlserver存储浅析
  2. 由C++转向C#简单介绍
  3. C# oledbconnection方法浅谈
  4. 数据库常用C#代码概述
  5. C#调用ImOK学习笔记
责任编辑:佚名 来源: 博客园
相关推荐

2009-08-12 15:43:02

操作C# Datase

2009-08-27 17:31:44

C#创建Windows

2009-08-12 15:34:40

C# DBNull

2009-08-10 16:30:56

C# BitmapDa

2009-08-14 17:04:50

C#类型系统

2009-08-13 13:38:30

C#命名规范

2009-08-07 16:10:20

C#调用API

2009-08-20 15:26:42

C#循环语句

2009-08-03 18:49:17

C#和Java

2009-08-21 15:16:23

C#使用指针

2009-08-21 09:23:11

C# GDI+

2009-08-26 17:31:59

C# const常量

2009-08-24 18:21:23

C# ListView

2009-08-13 15:40:28

C#基础知识

2011-06-08 13:35:18

C#数据类型

2009-09-03 17:21:51

C# VSProjec

2009-08-27 14:32:15

C#编写ActiveX

2009-08-06 14:59:36

C#编译器

2009-09-03 09:40:57

C#创建表单

2009-08-10 13:40:46

创建C# COM对象
点赞
收藏

51CTO技术栈公众号