views:

70

answers:

1

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.

+1  A: 

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.

Jon Seigel