filtering the data collected in DataReader

D

Doug Zody

I am populating the data into a datareader.

After populating the data, can I filter the data through code, just like
applying WHERE criteria TO THE QUERY.

I am using .Net Framework 1.1

Thanks,

Douz
 
W

W.G. Ryan eMVP

DataReaders can only be used Forward only with an open and available
connection - so you can filter with if() statements but that's about it -
the datatable though - you can use .Select - Computer - or use the other
methods associated w/ a DataView which hava very similar syntax.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top