December 2013
Beginner
416 pages
12h 45m
English
One way you can accelerate database access is by adding indexing to the fields in database tables. An index will speed up most operations involving that field, although inserts may be a tiny bit slower if there are a large number of existing rows.
As a rule, add an index to every
Field that is a primary key
Field that is a foreign key
Field that is sorted on
Field that is used in a comparison of some kind
SQLite ...
Read now
Unlock full access