04-19-2012 05:46 AM
04-19-2012 05:50 AM
04-19-2012 12:25 PM
The connector file properties support the join?Initially we recommend use of Views o Temporary Tables in complex or critical environments, which is required access to information of two or more tables/schemas. Thus, the connector performs the query on the View or Temporary Table.
<?xml version="1.0" encoding="UTF-8"?>
<connectors>
<connector>
<name>cities</name> <!– for fast test leave countries –>
<title>Cities</title> <!– for fast test leave Countries –>
<description>Cities List</description>
<aspect>mdbc:city</aspect> <!– for fast test leave mdbc:country –>
<column-detail>city.city</column-detail>
<driver-class-name>com.mysql.jdbc.Driver</driver-class-name>
<url>jdbc:mysql://127.0.0.1:3306/sakila</url>
<username>root</username>
<password>*****</password>
<table>city INNER JOIN country ON city.country_id=country.country_id</table>
<where>country like '%{0}%' OR city like '%{0}%'</where>
<columns>
<column name="city_id" primary-key="true" label="Code" visible="false" order="1" width="20"/>
<column name="city" label="City" order="2" width="120"/>
<column name="country" label="Country" order="2" width="120"/>
</columns>
</connector>
</connectors>
This change allow us to query and to show fields of two tables.04-20-2012 03:56 AM
05-10-2012 10:10 AM
05-11-2012 01:19 PM
11-04-2013 03:45 PM
11-13-2013 03:41 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.