c#:
dataSet.Tables[0].Select("ID = " + ID.ToString())[0].ItemArray;
will give you an array of the values in the row assuming the dataset is
called dataSet, its the first table, and the id number is in a variable
called ID.
--
Ciaran O''Donnell
http://wannabedeveloper.spaces.live.com [quoted text, click to view] "sweetiecakes" wrote:
> Simple Googling only results filling controls with information -- not
> this. The scenario is, that I have a whole table in my dataset. I know
> the ID (autoincrementing integer field) of the row to grab data from in
> the dataset. How do I get all the data of that row in the dataset?
Simple Googling only results filling controls with information -- not
this. The scenario is, that I have a whole table in my dataset. I know
the ID (autoincrementing integer field) of the row to grab data from in