C#中怎么创建一个DataSet对象
C#中怎么创建一个DataSet对象,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
启动 Microsoft Visual Studio .NET。在文件菜单上,单击新建,然后单击项目。从 Visual C# 项目类型中选择Windows 应用程序。默认情况下创建 Form1。
在视图菜单上,选择工具箱以显示“工具箱”,然后向 Form1 中添加一个按钮。
双击Button1。将出现该窗体的代码窗口。
将下面的using 指令添加到 Form1.cs 顶部:
using System.Data.OleDb; using System.Xml;
将下面的私有成员变量添加到 Form1 类中:
private string strConn =Provider=Microsoft.Jet.OLEDB.4.0; Data Source= + C:\\Program Files\\Microsoft Office\\Office10\\Samples\\ + Northwind.mdb;;
注意:您可能需要修改连接字符串中 Northwind.mdb 的路径,以便与您安装的位置相匹配。
在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);
}
关于C#中怎么创建一个DataSet对象问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注编程网行业资讯频道了解更多相关知识。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341