如何在VB.NET中使用OleDbDataReader搜索数据?

发布于 2024-08-14 07:42:22 字数 62 浏览 7 评论 0原文

用ms access作为数据库存储软件。 如果您知道如何根据特定条件读取数据并显示符合条件的结果的其他方法。

With ms access as the database storage software.
And if you know of other ways on how to read data base on a certain criteria and displaying the results that meets the criteria.

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

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

发布评论

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

评论(1

铁轨上的流浪者 2024-08-21 07:42:22

执行此操作的正常方法是创建一个 SQL 查询,该查询在数据库上执行所有数据搜索/过滤/排序,因此您不必在代码中执行此操作。

这样做时,您所要做的就是迭代 DataReader 中的结果。

如果您不熟悉 SQL,这里有一个很好的开始的地方

The normal way to do this is to create a SQL query that does all the data searching/filtering/ordering on the database so you don't have to do it in code.

Doing it that way, all you have to do is iterate through the results in the DataReader.

If you're unfamiliar with SQL, here is a good place to get started.

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