从SQL 2014 XML列中检索后,将XML显示为html

时间:2015-11-26 06:49:54

标签: c# sql xml

使用C#,需要代码片段,它将查询包含xml数据的列并将数据写入外部XML文件。 在xml文件的样式之后,在html div标签中显示它。

1 个答案:

答案 0 :(得分:0)

代码看起来像下面的代码。您需要根据需要修改连接字符串和SQL。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;

namespace ConsoleApplication58
{
    class Program
    {
        static void Main(string[] args)
        {
            string connStr = "Enter Your Conneciton String Here";
            string SQL = "Select XML_COL_NAME from table1";
            SqlDataAdapter adapter = new SqlDataAdapter(SQL, connStr);

            DataTable dt = new DataTable();
            adapter.Fill(dt);
            dt.WriteXml("filename");
        }
    }
}