您好,登錄后才能下訂單哦!
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;
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);
}
關于C#中怎么創建一個DataSet對象問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。