C#中怎么創(chuàng)建一個DataSet對象,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
成都創(chuàng)新互聯(lián)10多年成都企業(yè)網(wǎng)站定制服務(wù);為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計及高端網(wǎng)站定制服務(wù),成都企業(yè)網(wǎng)站定制及推廣,對隧道混凝土攪拌車等多個方面擁有豐富的網(wǎng)站推廣經(jīng)驗的網(wǎng)站建設(shè)公司。
1. 啟動 Microsoft Visual Studio .NET。在文件菜單上,單擊新建,然后單擊項目。從 Visual C# 項目類型中選擇Windows 應(yīng)用程序。默認(rèn)情況下創(chuàng)建 Form1。
2. 在視圖菜單上,選擇工具箱以顯示“工具箱”,然后向 Form1 中添加一個按鈕。
3. 雙擊Button1。將出現(xiàn)該窗體的代碼窗口。
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 處理程序中添加以下代碼:
//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);
}
關(guān)于C#中怎么創(chuàng)建一個DataSet對象問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。
文章名稱:C#中怎么創(chuàng)建一個DataSet對象
地址分享:http://aaarwkj.com/article18/isjcgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、App開發(fā)、外貿(mào)建站、微信小程序、網(wǎng)站改版、微信公眾號
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)