I use Firebird 2.5 and have two data sets in a master detail relation and the detail dataset sql like that:
Code: Select all
select * from detail_table
where (detail_table.m_id = :m_id) and (is_true like :w)and I set the mastersource property of the detail table to the master table
at run-time I provide the parameter value like this
Code: Select all
detail_table.ParamByName('w').AsString := '%';
detail_table.Open;why is that and how to fix
thanks