Get the 100 XXX first and after whait on background for other record?

  • Thread starter Thread starter mtcc
  • Start date Start date
M

mtcc

in MSAccess run a query return very first record, and after continue
whaiting for other record on background.
have easy way to get it on ADO.NET 2 + SQL2005 ?
 
Use multithreading approach, for example use BackgroundWorker to execute
your query code in a worker thread. Just be careful - you can't touch
windows UI controls from worker thread.
 
Back
Top