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