ado查询过滤器

发布于 2024-09-28 11:37:31 字数 69 浏览 2 评论 0原文

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

谢谢。

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

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凑诗 2024-10-05 11:37:31

在研究历史问题时,我遇到了这个问题:

Delphi ADO Query

,RRUZ 表示:

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

编辑:或者只是:

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

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;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文