DataAdapter Fill Dataset progress for Select Query

  • Thread starter Thread starter Krishna prasad V.R
  • Start date Start date
K

Krishna prasad V.R

Hi,
Is there a way to know how many rows have been fetched into dataset
when we are filling huge amount of data. I want to show the progress
status in the ASP.net UI in a fixed intervals. Please let me know the
best way to do this.

thanks
-kitty
 
Hi Krishna,

You might implement DataTable.RowChanged/Changing event.
You should also put the filling method in a worker thread.
 
Hi Markic thanks for the reply,
What you have suggested has worked for me perfectly fine. I was trying
with the dataset and trying to leverage the use of
DataAdapter.RowUpdated event and did not worked for me. And have you
worked on asynchronous processing model in asp.net.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top