You have a few options if you intend to locate the row outside of SQL.
//This will return an array of rows
RowArray myRowArray = dataset.Select("some_value = " + uniqueValue);
You could also use a dataview:
DataView view = new DataView(dataset.Tables[<table>]);
view.RowFilter = "some_value = " + uniqueValue;
hth.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for:
Beginning Visual C# 2008
Professional Search Engine Optimization with ASP.NET
Professional IIS 7 and ASP.NET Integrated Programming
Wrox Blox: Introduction to Google Gears
Wrox Blox: Create Amazing Custom User Interfaces with WPF and .NET 3.0
================================================== =========