中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

數據庫如何生成xml

發布時間:2021-07-27 11:11:34 來源:億速云 閱讀:200 作者:小新 欄目:編程語言

這篇文章主要介紹數據庫如何生成xml,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

第一個示例方法:

1 SqlConnection conn = new SqlConnection();
2 conn.ConnectionString = "Server=127.0.0.1;User 

ID=sa;Password=fdahgdrethj31313210212121;
Database=northwind;Persist Security Info=True";
3 conn.Open();
4 SqlDataAdapter da = new SqlDataAdapter("select * from 表", conn);
5 SqlCommandBuilder thisBulder = new SqlCommandBuilder(da);
6 DataSet ds = new DataSet();
7 da.Fill(ds);
8 ds.WriteXml(@"C:\temp.xml");

第二個示例方法:

1 private void WriteXmlToFile(DataSet thisDataSet)
2 {
3 if (thisDataSet == null) { return; }
4 // Create a file name to write to.
5 string filename = "myXmlDoc.xml";
6 // Create the FileStream to write with.
7 System.IO.FileStream myFileStream = new System.IO.FileStream
8 (filename, System.IO.FileMode.Create);
9 // Create an XmlTextWriter with the fileStream.
10 System.Xml.XmlTextWriter myXmlWriter =
11 new System.Xml.XmlTextWriter
(myFileStream, System.Text.Encoding.Unicode);
12 // Write to the file with the WriteXml method.
13 thisDataSet.WriteXml(myXmlWriter);
14 myXmlWriter.Close();
15 }

以上是“數據庫如何生成xml”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

葫芦岛市| 临汾市| 安远县| 息烽县| 阿鲁科尔沁旗| 射洪县| 津市市| 高安市| 塔河县| 西乌珠穆沁旗| 鹤岗市| 昌江| 西平县| 明星| 牡丹江市| 昌黎县| 万山特区| 嘉荫县| 日照市| 边坝县| 满洲里市| 霞浦县| 遵义市| 毕节市| 马龙县| 缙云县| 老河口市| 新营市| 且末县| 渭源县| 霸州市| 清水河县| 浦东新区| 法库县| 安多县| 寻乌县| 闸北区| 镇原县| 濉溪县| 米泉市| 财经|