I have 3000+ record in my database and I want to Display that record in my Windows CE mobile application.Which is Fastest way to Display that record.I used C# language.How can I do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This MS artice discusses this exact topic.
http://msdn.microsoft.com/en-us/library/dd938877.aspx
I was using table adapers and it was really, really slow. One operation wrote 3000 records of about 50 chars and took 20-30 minutes on an old win ce 6.1 device.
I changed over to use resultsets and same task is about 1-2 minutes.
Andrew