Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to get distinct values from a data table 1

Status
Not open for further replies.

chinnijahn

Programmer
Jul 14, 2009
9
US
I am using vb 2005 and dotnet version 2.0

Hi I have a data table called Details.
I have created a binding source called bsr_details

Details have field names like plant , options..

i want to get the disticnt values of all options..

if i have to write it in sql then i could have write

"select distinct options from details where plant = 1"

I am not allwoed to access teh database here so I have to use the table adapter and binding source ..so please guide me how to get those desired results...
 
I thing this should be OK

Code:
Dim colNames() As String = {"options"}
Dim DistinctOnOptions As DataTable = Details.DefaultView.ToTable(True, colNames)
 
Hi The above solution actually worked however I had table adapter instead of a datatable.

so I have used Getdata method of the table adapter to get the data table.

The code looks like this

Dim colnames() As String = {"Order"}

Dim tdistinctRows As DataTable = TestTableAdapter.GetData(JobNo, MixNo, nothing, Nothing)

tdistinctRows = tdistinctRows.DefaultView.ToTable(True, colnames)

and i had the desired result...

Thanks a lot Tip Giver for helping me in this...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top