I have two ZQuery's - master and details, linked via detail.DataSource and sql parameters.
Master sql:
select key1, key2 from list
Details sql:
select * from list where key1=:key1 and key2=:key2
The problem is that when key2 is null the details is empty!
How do I get the parameters here work with null link fields?