Query Optimization in SQLite
January 27th, 2010 by Sanket
Query Optimization in SQLite
This document provides a terse overview of how the query optimizer for SQLite works. This is not a tutorial. The reader is likely to need some prior knowledge of how database engines operate in order to fully understand this text.
1.0 WHERE clause analysis
The WHERE clause on a query is broken up into "terms" where each term is separated from the others...SQLite Component in V3
January 15th, 2010 by Sanket
Different component in SQLite Version 3
Following are the some sqlite v3 components
Objects: * sqlite3 * sqlite3_int64 * sqlite3_uint64 * sqlite_int64 * sqlite_uint64 * sqlite3_file * sqlite3_io_methods * sqlite3_mutex...