如何在 android 2.2 中使用 sqlite 3.7.4?因为,任何查询都不能在 android 2.2 上工作,但可以工作蜂窝,ICS。请帮我。
这是我的查询:
select snippet(content,'<b>','</b>','...',-1) as mytext,docid as _id from content where text match 'book*'"
public Cursor getSearchResult(String str) {
String query = new StringBuilder().append("select snippet(content,'<b>','</b>','...',-1) as mytext,docid as _id from content where").append(" text match '").append(str).append("*'").toString();
return database.rawQuery(query, null);
}
我正在使用 fts3 表。
日志:
android.database.sqlite.SQLiteException: SQL logic error or missing database
此查询适用于 ICS。