如何在VB.NET中使用OleDbDataReader搜索数据?
用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的正常方法是创建一个 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.