Вопрос

When using the Filter property of the ClientDataSet with filter

Name NOT LIKE 'Paulo%'

says that the syntax is incorrect.

how can I make a workaround in the filter?

Это было полезно?

Решение

Change the Filter syntax to

  Clientdataset.Filter := 'NOT [Name]  LIKE ' +QuotedStr('Paulo%');
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top