亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中怎么創建一個DataSet對象

發布時間:2021-07-08 14:38:12 來源:億速云 閱讀:156 作者:Leah 欄目:編程語言

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 處理程序中添加以下代碼:

  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對象問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

祁东县| 轮台县| 德保县| 门头沟区| 漳平市| 洛宁县| 屏南县| 扶绥县| 萍乡市| 托克逊县| 京山县| 扎兰屯市| 隆化县| 苍山县| 临高县| 武强县| 安丘市| 大同县| 石城县| 汉川市| 哈巴河县| 体育| 五华县| 榆社县| 泰和县| 彝良县| 长乐市| 阳信县| 来宾市| 大关县| 罗甸县| 湟中县| 皋兰县| 雅江县| 永福县| 神池县| 遂宁市| 特克斯县| 普安县| 抚宁县| 莲花县|