日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
C#創(chuàng)建DataSet對象詳細介紹

C#語言有很多值得學習的地方,這里我們主要介紹C#創(chuàng)建DataSet對象,包括介紹在視圖菜單上,選擇工具箱以顯示“工具箱”等方面。

成都創(chuàng)新互聯(lián)從2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務公司,擁有項目網(wǎng)站設計、成都網(wǎng)站建設網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元大方做網(wǎng)站,已為上家服務,為大方各地企業(yè)和個人服務,聯(lián)系電話:13518219792

本文說明如何C#創(chuàng)建DataSet對象,以及如何使用WriteXML方法將該對象包含的數(shù)據(jù)導出到 XML 文件中。生成的 XML 文件可以直接在 Excel 中打開。為便于說明,使用 Jet OLEDB 提供程序從 Microsoft Access Northwind 示例數(shù)據(jù)庫C#創(chuàng)建DataSet對象。但是,類似的代碼可與您使用 Visual C#創(chuàng)建DataSet對象一起使用。

1. 啟動 Microsoft Visual Studio .NET。在文件菜單上,單擊新建,然后單擊項目。從 Visual C# 項目類型中選擇Windows 應用程序。默認情況下創(chuàng)建 Form1。

2. 在視圖菜單上,選擇工具箱以顯示“工具箱”,然后向 Form1 中添加一個按鈕。

3. 雙擊Button1。將出現(xiàn)該窗體的代碼窗口。

4. 將下面的using 指令添加到 Form1.cs 頂部:

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

5.將下面的私有成員變量添加到 Form1 類中:

 
 
 
  1. private string strConn =Provider=Microsoft.Jet.OLEDB.4.0;  
  2. Data Source= + C:\\Program Files\\Microsoft Office
  3. \\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);  

【編輯推薦】

  1. C#使用sqlserver存儲淺析
  2. 由C++轉(zhuǎn)向C#簡單介紹
  3. C# oledbconnection方法淺談
  4. 數(shù)據(jù)庫常用C#代碼概述
  5. C#調(diào)用ImOK學習筆記

網(wǎng)頁題目:C#創(chuàng)建DataSet對象詳細介紹
網(wǎng)站地址:http://www.5511xx.com/article/ccddicp.html