System.Xml.XmlDataDocument.GetElementFromRow 方法

方法描述

检索与指定 DataRow 关联的 XmlElement。

语法定义(C# System.Xml.XmlDataDocument.GetElementFromRow 方法 的用法)

public XmlElement GetElementFromRow(
	DataRow r
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
r System-Data-DataRow 希望检索其关联 XmlElement 的 DataRow。
返回值 System.Xml.XmlElement 包含指定 DataRow 的表示形式的 XmlElement。

提示和注释

System.Xml.XmlDataDocument.GetElementFromRow 方法例子

此示例使用 SQL Server 2000 Northwind 数据库。

using System;
using System.Data;
using System.Xml;
using System.Data.SqlClient;

public class Sample
{
  public static void Main()
  {
     DataSet dsNorthwind = new DataSet();

     //Create the connection string           
     String sConnect;
     sConnect="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=Northwind";     

     //Create a connection object to connect to the northwind db.
     SqlConnection nwconnect = new SqlConnection(sConnect);

     //Create a command string to select all the customers in the WA region.
     String sCommand = "Select * from Customers where Region='WA'";

     //Create an adapter to load the DataSet.
     SqlDataAdapter myDataAdapter = new SqlDataAdapter(sCommand, nwconnect);

     //Fill the DataSet with the selected records.
     myDataAdapter.Fill(dsNorthwind,"Customers");

     //Load the document with the DataSet.
     XmlDataDocument doc = new XmlDataDocument(dsNorthwind);   

     //Create an element representing the first customer record.
     DataRow row = doc.DataSet.Tables[0].Rows[0];
     XmlElement elem = doc.GetElementFromRow(row);
     Console.WriteLine(elem.OuterXml);    
  }
}

异常

异常 异常描述

命名空间

namespace: System.Xml

程序集: System.Data(在 System.Data.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。