Distinct rows from a dataset?

  • Thread starter Thread starter Scott Meddows
  • Start date Start date
S

Scott Meddows

Can I select DISTINCT rows by using Dataset.DefaultView.RowFilter = "Distinct Col1, Col2"
 
No built in way. You will either have to do it in your sql query, or roll
your own mechanism. The dataset is really not a very good replacement for a
database - it has severe limitations on what it can do for you.
 
darn :(

Thanks for the quick response!

Marina said:
No built in way. You will either have to do it in your sql query, or roll
your own mechanism. The dataset is really not a very good replacement for a
database - it has severe limitations on what it can do for you.
 
Back
Top