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:

  1. fork sqlitequerybuilder , modify copy not use parentheses here, or

  2. use rawquery() on sqlitedatabase, perhaps using buildquery() or buildquerystring() on sqlitequerybuilder give string of query, modify eliminate parentheses giving trouble


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -