DataSet

  • Thread starter Thread starter Vivek Sharma
  • Start date Start date
V

Vivek Sharma

Hi,

I have a dataset displaying the records. If someone adds a record
currently, I have to execute the SP again and reload the dataset. Is it
possible that a user can add a record to table and at the same time to the
current dataset and reload the dataset rather than requerying the database?

Thanks
 
I suppose you could do this, but why would you want to?

It would mean you were essentially maintaining a copy of the database
tables. If the SP takes a while to execute, then the fault is with the
database procedures being too slow, and this should not enforce workarounds
on the application side of things.
 
Back
Top