Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您能否提供一个在 Delphi 7 中使用 ADOQuery 的 Filter 属性的简单示例?
谢谢。
在调查历史问题时,我进入了这个问题:
德尔福 ADO 查询
RRUZ 说:
AdoQuery1.close; AdoQuery1.filter := 'your condition goes here'; AdoQuery1.filtered := true; AdoQuery1.Open;
编辑:或只是:
AdoQuery1.filter := 'your condition goes here'; AdoQuery1.filtered := true;