hi
what is the fast way to find and data in sqlCE in windows-mobile (C#) ?
i have database with 1000000 records.
sql query ? .... or data reader ?.....or wat ??
thank's in advance
hi
what is the fast way to find and data in sqlCE in windows-mobile (C#) ?
i have database with 1000000 records.
sql query ? .... or data reader ?.....or wat ??
thank's in advance
By far the fastest way is to not use the query processor at all. Index the table to the field you want to search on and then use a SqlCeCommand with TableDirect and open a reader. Just adding the query procesor makes it an order of magnitude slower.