M
Mike
How can I use a Join to retrieve data into an InfoPath dropdown list
box?
I am using managed code, so I can build my own SQL query, but I can't
figure out how to set up the data source in InfoPath. I have tried all
sorts of data connections.
The Join that will get the data from SQL Server is:
select a.* , l.name_1, c.*
from COMPANIES c
left join client l on l.ID = c.COMPANY_CODE
left join address a on a.addr_id = l.addr_id
where
l.NAME_1 like 'john%'
But I can't figure out how to do that with InfoPath.
box?
I am using managed code, so I can build my own SQL query, but I can't
figure out how to set up the data source in InfoPath. I have tried all
sorts of data connections.
The Join that will get the data from SQL Server is:
select a.* , l.name_1, c.*
from COMPANIES c
left join client l on l.ID = c.COMPANY_CODE
left join address a on a.addr_id = l.addr_id
where
l.NAME_1 like 'john%'
But I can't figure out how to do that with InfoPath.