A set of specific conditions has to be met before SQLite will use an index when the LIKE operator is used in the statement:
http://www.sqlite.org/optoverview.html (see section 4.0).
One of those conditions is that the prepared statement has to be compiled with sqlite3_prepare_v2.
Is Adobe using sqlite3_prepare_v2 or sqlite3_prepare?
Thanks