I have a DataSet that is filled from a sql select statement that returns one table and most likely just a few rows.
I need a way to search the second column of the table in the DataSet to see if any of the rows match a specific string.
This is coded in C#.Net in a windows application.
Thanks for any advice or direction,
denny1824
I need a way to search the second column of the table in the DataSet to see if any of the rows match a specific string.
This is coded in C#.Net in a windows application.
Code:
DataSet ds = new DataSet(); SqlCommand cmd = new SqlCommand(selectString, conn); SqlDataAdapter da = new SqlDataAdapter(cmd); da.Fill(ds);
denny1824
Comment