本文介绍了如何将sql查询结果保存到文本文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 朋友们。 i希望在sql server和c#中以编程方式将查询结果保存到文本文件中。 我该怎么做? 谢谢你hi friends.i want to save my query result to a text file programatically in sql server and c#.how can i do that?thank you推荐答案{SqlCommand sc = new SqlCommand("SELECT * FROM Table", oConn);SqlDataAdapter da = new SqlDataAdapter(sc);DataSet ds = new DataSet();da.Fill(ds);ds.WriteXml("MyFile.txt");} 要附加文本文件,To Append the text file,using(StreamWriter file = File.AppendText(@"c:\MyFile.txt")) { file.WriteLine(yourAppendString); } 这篇关于如何将sql查询结果保存到文本文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-24 08:26