I'm using a JDBC query to an MS SQL database as a datasource for a view. The datasource is something like:
<xp:this.data>
<xe:jdbcQuery connectionName="mssql" sqlQuery="select * from table" var="jdbcData1">
</xe:jdbcQuery>
</xp:this.data>
I can add parameters to this (eg: where col=?) and it all works fine, but I can't manage to get a join working. Is it possible to join two tables in this manner?