从SQL 2014 XML列检索后,将XML显示为html
本文关键字:XML 显示 html 检索 SQL 2014 | 更新日期: 2023-09-27 18:24:43
使用C#,需要查询包含xml数据的列并将数据写入外部xml文件的代码片段。然后对xml文件进行样式设置,并将其显示在htmldiv标记中。
代码看起来像下面的代码。您需要根据需要修改连接字符串和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");
}
}
}