java - Is there a way to remove the parenthesis that are automatically generated in CursorLoader()'s selection parameter? -
first of all, attempting use fts3 sqlite table searching on android doesn't work since doesn't default support parenthesis.
i noticed cursorloader() automatically puts selection parameter (where clause) within parenthesis when executing.
so question is, there way remove parenthesis?
any work-around, comments, or answers appreciated.
you using sqlitequerybuilder. sqlitequerybuilder adding parentheses.
your options are:
fork
sqlitequerybuilder, modify copy not use parentheses here, oruse
rawquery()onsqlitedatabase, perhaps usingbuildquery()orbuildquerystring()onsqlitequerybuildergivestringof query, modify eliminate parentheses giving trouble
Comments
Post a Comment