Send Port SELECT Schemas
Executing Parameterized SELECT Statements
The following sections show the schema, instance, and response for the following parameterized query:
SELECT actor.attributes.email, repository.name FROM publicdata.samples.github_nested WHERE repository.name = @repository.name
Mapping the SELECT Schema to the Request and Response
SELECT schemas in solicit-response send ports have both a response section and an input parameters section.SELECT Schema
Below is an example schema for a parameterized query executed from a solicit-response send port.
<?xml version="1.0" encoding="utf16" ?>
<xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" attributeFormDefault="unqualified" elementFormDefault="qualified" targetrepository.namespace="http://www.cdata.com/GoogleBigQueryProvider/2020" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="parameters">
<xs:complexType>
<xs:sequence>
<xs:element name="repository.name" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<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="actor.attributes.email">
<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="repository.name">
<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:attribute name="AffectedRows" type="xs:int" />
</xs:complexType>
</xs:element>
</xs:schema>
SELECT Request
Below is the input instance:
<ns0:parameters xmlns:ns0="http://www.cdata.com/GoogleBigQueryProvider/2020">
<ns0:repository.name>repository.name_0</ns0:repository.name>
</ns0:parameters>
SELECT Response
Below is the response:
<ns0:table AffectedRows="3" xmlns:ns0="http://www.cdata.com/GoogleBigQueryProvider/2020">
<ns0:row>
<ns0:actor.attributes.email IsNull="true">actor.attributes.email_0</ns0:actor.attributes.email>
<ns0:repository.name IsNull="true">repository.name_0</ns0:repository.name>
</ns0:row>
<ns0:row>
<ns0:actor.attributes.email IsNull="true">actor.attributes.email_0</ns0:actor.attributes.email>
<ns0:repository.name IsNull="true">repository.name_0</ns0:repository.name>
</ns0:row>
<ns0:row>
<ns0:actor.attributes.email IsNull="true">actor.attributes.email_0</ns0:actor.attributes.email>
<ns0:repository.name IsNull="true">repository.name_0</ns0:repository.name>
</ns0:row>
</ns0:table>