本文介绍了如何在asp.net c#中将sql查询记录或响应转换为xml文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在实现一个获取sql选择命令查询的服务,并将其转换为关于所选查询的xml文件。

任何代码或示例请?

I am implementing a service that get a sql "Select command"query and transform it to xml file with respect to the selected query.
any code or example please?

推荐答案


using (System.Data.SqlClient.SqlConnection c = new SqlConnection(ConfigurationManager.ConnectionStrings["connectionstringname"].ConnectionString))
    using (System.Data.SqlClient.SqlCommand cmd = c.CreateCommand())
    {
        cmd.CommandText = "yourstoredprocedure";
        cmd.CommandType = CommandType.StoredProcedure;

        c.Open();

        System.Xml.XmlReader r = cmd.ExecuteXmlReader();
        XmlDocument document = new XmlDocument();
        document.Load(r);

        Response.ContentType = "text/xml";
        document.Save(Response.Output);

        c.Close();
    }



}


}


这篇关于如何在asp.net c#中将sql查询记录或响应转换为xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 02:43