Bug in FilterSQL ODAC 5.55.1.23
Posted: Sat 15 Oct 2005 08:34
Code: Select all
begin
Open;
FilterSQL := 'dept=10';
// Works Fine
end;
begin
FilterSQL := 'dept=10';
Open; // BUG - all records is fetching :(
end;
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
Code: Select all
begin
Open;
FilterSQL := 'dept=10';
// Works Fine
end;
begin
FilterSQL := 'dept=10';
Open; // BUG - all records is fetching :(
end;