0

您能否提供一个在 Delphi 7 中使用 ADOQuery 的 Filter 属性的简单示例?

谢谢。

4

1 回答 1

3

在调查历史问题时,我进入了这个问题:

德尔福 ADO 查询

RRUZ 说:

AdoQuery1.close;
AdoQuery1.filter := 'your condition goes here';
AdoQuery1.filtered := true;
AdoQuery1.Open;

编辑:或只是:

AdoQuery1.filter := 'your condition goes here';
AdoQuery1.filtered := true;
于 2010-10-17T15:30:58.863 回答