开发者

adoQuery Filter

开发者 https://www.devze.com 2023-01-20 03:00 出处:网络
开发者_Python百科Could you please provide me with a simple example of using the Filter Property of ADOQuery in Delphi 7?
开发者_Python百科

Could you please provide me with a simple example of using the Filter Property of ADOQuery in Delphi 7?

Thanks.


as looking into histroy question i got into this question:

Delphi ADO Query

which said by RRUZ that:

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

Edit: or just :

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

精彩评论

暂无评论...
验证码 换一张
取 消