Querying from a dataset

  • Thread starter Thread starter bhuff
  • Start date Start date
B

bhuff

Using a dataadapter, one can query from a datasource to
get a dataset. Is it possible to be able a query from a
dataset and get another dataset?
 
Hi,

I don't know of any way of getting a new dataset, but you can query each
table in the dataset.
Each DataTable has a Select method that returns an array of DataRows. See
the MSDN documentation for a code sample.

Chris
 
Back
Top