Need Help Please on DataSet

  • Thread starter Thread starter Thomas
  • Start date Start date
T

Thomas

Hi,

I am using a typed dataset in a application where I sometimes delete rows in
different tables. The problem I am running into is after I delete a row(has
not updated db) and try to access a row in a different table (same dataset)
I get this error "Deleted Row Information cannot be accessed through the
row". Why is this? Do I have to update the database before I view other
data? I need to be able to get around this!

Thanks
 
I did figure out to access the data using DataRow["ID",
DataRowVersion.Original]. However, why do I have to do this on a row in a
table I did not delete? The row I am viewing is linked to the row I deleted
by a foriegn key.

Thanks
 
Back
Top