M
mikeb
I came onboard to help finish a ppc application (vb.net cf) for a company.
The original developer is loading datasets from a sql server database for
data handling. This worked pretty well (but very messy coding in my
opinion) up until we started dumping some real life data to the scanner
(3000-4000 records).
With the large amount of data being loaded into the datasets lookups take an
exceptional amount of time to complete.
My first question is - if we were to convert the datahandling method to
sqlce, would this resolve the speed issue? Assuming we can index the data
properly.
Second is, is there any way to speed up a dataset search? They're using a
simple looking .select method to do the lookups:
ie. drow = dsVEKP.Tables(0).Select("UCC = 1234455566777")
Can you index a dataset?
Thanks!!
Mike
The original developer is loading datasets from a sql server database for
data handling. This worked pretty well (but very messy coding in my
opinion) up until we started dumping some real life data to the scanner
(3000-4000 records).
With the large amount of data being loaded into the datasets lookups take an
exceptional amount of time to complete.
My first question is - if we were to convert the datahandling method to
sqlce, would this resolve the speed issue? Assuming we can index the data
properly.
Second is, is there any way to speed up a dataset search? They're using a
simple looking .select method to do the lookups:
ie. drow = dsVEKP.Tables(0).Select("UCC = 1234455566777")
Can you index a dataset?
Thanks!!
Mike