使用C#,需要代码片段,它将查询包含xml数据的列并将数据写入外部XML文件。 在xml文件的样式之后,在html div标签中显示它。
答案 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");
}
}
}