problem with the dataset update

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have notice something with the datagrid update
i have an application which is updated from multiple sources
when one user deletes a row on the datagrid, the delete propgates back to
the database. I see it is gone, from the database.
but, when other users app calls it's fill command to refresh it's datatable,
It sees the already deleted row.
what am i doing wrong?
 
How certain are you the update gets to the database?
If you are calling datagrid.update, that only propagates the changes from
the grid to the dataset, not the database.

How certain are you the other user is retrieving the data after it has been
deleted from the database?
 
I know it gets to the database because i am looking right into the sqlserver
tables using the query analyzer in sqlserver
 
Back
Top