获取mssql的xml返回结构的语句

发布时间:2021-01-18编辑:脚本学堂
获取mssql的xml返回结构的语句

数据库参数配置:for xml auto

调用方法:
   SqlCommand SqlComm= new SqlCommand("Psp_ShowMarkerProduct",Db.SqlConn);
   XmlReader Xr= SqlComm.ExecuteXmlReader();
   XmlDocument xmlDoc=new XmlDocument();
   xmlDoc.Load(Xr);
   Xml1.Document=xmlDoc;
   SqlComm.Dispose();

一定要生成xmldoc对象 否则报错。

xsl文件
<?xml version="1.0" encoding="GB2312" ?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  ...
 </xsl:template>
</xsl:stylesheet>