문제

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;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top