problem with having a delete in database propagate to a bound data

  • 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 by using the SQL query
analyzer.
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?
 
When you are refreshing the datatable - are you clearing it first? If not,
then the rows will be appended to the end and the datatable will appear to
have that row.
 
Back
Top