0

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?

Naveen
  • 6,786
  • 10
  • 37
  • 85
Josh Jolly
  • 11,258
  • 2
  • 39
  • 55

1 Answers1

0

Yes this should work without any problems as its just crating the Statement to run against the JDBC Server.

Toby Samples
  • 2,168
  • 14
  • 15