Distinct rows from a dataset?

S

Scott Meddows

Can I select DISTINCT rows by using Dataset.DefaultView.RowFilter = "Distinct Col1, Col2"
 
M

Marina

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.
 
S

Scott Meddows

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.
 

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