Is possible retrive index of a table in a dataset?

  • Thread starter Thread starter Gian Paolo
  • Start date Start date
G

Gian Paolo

Hi all on .net 2.0 i have a dataset and a table with some rows.
Is there a way to retrive the current row index ? So i can retrive other
value of that column...

something like dataset.table.columnname.value

regards
paolo
 
Hello Paolo,

I'm a little unclear of what you are attempting to do. If you are reading
in a dataset, don't you already have all the data in memory in the dataset
object? Otherwise, as you read each record in from the database, read all
the fields in so you have all the columns of data and you don't have to
"re-read" the record.

DanK

Gian Paolo said:
i mean of the current row...

Gian Paolo said:
Hi all on .net 2.0 i have a dataset and a table with some rows.
Is there a way to retrive the current row index ? So i can retrive other
value of that column...

something like dataset.table.columnname.value

regards
paolo

 
Back
Top