DO you know any workaround how to precompile SELECT statement returning Cursor and to use it multiple times (I'm 99% sure that it's possible with sqlite as java desktop driver allows precompilation with SELECT returning cursor)? Unfortunately as source I can't use QueryBuilder but pure SQL String type SELECT statement (with ? for parameters). Precompilation would be great because of efficiency.
Plus what means in practice that SQLiteStatement is not thread safe? How could I replace it to be threads safe and efficient (precompilation)?