執行 XPath 查詢 (SQLXML Managed 類別)
此範例說明如何針對對應架構執行 XPath 查詢。
請考慮此架構:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:sql="urn:schemas-microsoft-com:mapping-schema">
<xsd:element name="Con" sql:relation="Person.Contact" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="FName"
sql:field="FirstName"
type="xsd:string" />
<xsd:element name="LName"
sql:field="LastName"
type="xsd:string" />
</xsd:sequence>
<xsd:attribute name="ContactID" type="xsd:integer" />
</xsd:complexType>
</xsd:element>
</xsd:schema>
此 C# 應用程式會針對此架構執行 XPath 查詢(MySchema.xml)。
注意
在程式代碼中,您必須在 連接字串 中提供 Microsoft SQL Server 實例的名稱。
using System;
using Microsoft.Data.SqlXml;
using System.IO;
class Test
{
static string ConnString = "Provider=SQLOLEDB;Server=(local);database=AdventureWorks;Integrated Security=SSPI";
public static int testXPath()
{
Stream strm;
SqlXmlCommand cmd = new SqlXmlCommand(ConnString);
cmd.CommandText = "Con";
cmd.CommandType = SqlXmlCommandType.XPath;
cmd.RootTag = "ROOT";
cmd.SchemaPath = "MySchema.xml";
strm = cmd.ExecuteStream();
using (StreamReader sr = new StreamReader(strm)){
Console.WriteLine(sr.ReadToEnd());
}
return 0;
}
public static int Main(String[] args)
{
testXPath();
return 0;
}
}
若要測試應用程式
請確定您電腦上已安裝 Microsoft .NET Framework。
將這個範例中提供的 XSD 架構 (MySchema.xml) 儲存在資料夾中。
將本範例中提供的 C# 程式代碼 (DocSample.cs) 儲存在儲存架構的相同資料夾中。 (如果您將檔案儲存在不同的資料夾中,則必須編輯程式代碼,並指定對應架構的適當目錄路徑。
編譯程序代碼。 若要在命令提示字元編譯程序代碼,請使用:
csc /reference:Microsoft.Data.SqlXML.dll DocSample.cs
這會建立可執行檔 (DocSample.exe)。
在命令提示字元中,執行DocSample.exe。