[fpc-pascal] Bufdataset TCustomBufDataset.InternalOpen; swallowing filter construction

Reinier Olislagers reinierolislagers at gmail.com
Mon Feb 4 11:37:06 CET 2013


Hi list,

In sqldb bufdataset.pas, going through the code looking through the
comments, this code caught my eye (around line 1164):
procedure TCustomBufDataset.InternalOpen;
...
  // parse filter expression
  try
    ParseFilter(Filter);
  except
    // oops, a problem with parsing, clear filter for now
    on E: Exception do Filter := EmptyStr;
  end;

seems to swallow problems with parsing filter expressions.

Shouldn't the exception bubble up though so the user is notified? If the
filter is not correct, e.g. showing all data instead of what the user
wanted seems a bit weird..

Thanks,
Reinier




More information about the fpc-pascal mailing list