受信場所 SELECT スキーマ
受信場所からのSELECT ステートメントの実行
以下のセクションでは、次のクエリのスキーマと応答について説明します。
SELECT Id, Fullname FROM [My Contacts] WHERE Updated = '2017-03-15'
SELECT スキーマの応答へのマッピング
SELECT コマンドスキーマには、受信場所に応答セクションのみがあります。SELECT スキーマ
以下は対応するスキーマです。
<?xml version="1.0" encoding="utf16" ?>
<xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" attributeFormDefault="unqualified" elementFormDefault="qualified" targetFullnamespace="http://www.cdata.com/GoogleContactsProvider/2020J" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="table">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="row">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="Id">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="IsNull" type="xs:boolean" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Fullname">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="IsNull" type="xs:boolean" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
SELECT 応答
以下は本製品 から返された応答です。
<ns0:table xmlns:ns0="http://www.cdata.com/GoogleContactsProvider/2020J">
<ns0:row>
<ns0:Id IsNull="true">Id_0</ns0:Id>
<ns0:Fullname IsNull="true">Fullname_0</ns0:Fullname>
</ns0:row>
<ns0:row>
<ns0:Id IsNull="true">Id_0</ns0:Id>
<ns0:Fullname IsNull="true">Fullname_0</ns0:Fullname>
</ns0:row>
<ns0:row>
<ns0:Id IsNull="true">Id_0</ns0:Id>
<ns0:Fullname IsNull="true">Fullname_0</ns0:Fullname>
</ns0:row>
</ns0:table>