SQLite table taking time to fetch the records in LIKE query
Scenario : database is sqlite (need to encrypt records in database. Hence used SQL cipher API for iOS) There is a table in the database named partnumber with schema as follows: CREATE TABLE partnumber ( objid varchar PRIMARY KEY, description varchar, make varchar, model varcha, partnumber varchar, SSOKey varchar, PMOKey varchar ) This table contains approximately 80K records. There are 3 text fields in the UI view, in which user can enter search terms and searching is made as soon as user enters the letters there. 3 text fields are: txtFieldDescription, txtFieldMake and txtFieldModel. Suppose,