這篇文章主要介紹數據庫如何生成xml,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
成都創新互聯-專業網站定制、快速模板網站建設、高性價比赤壁網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式赤壁網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋赤壁地區。費用合理售后完善,10多年實體公司更值得信賴。第一個示例方法:
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”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創新互聯行業資訊頻道!
新聞標題:數據庫如何生成xml-創新互聯
轉載注明:http://m.newbst.com/article0/coseoo.html
成都網站建設公司_創新互聯,為您提供搜索引擎優化、網站設計公司、建站公司、網站策劃、網站設計、App開發
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯