This is the error I am receiving on the Android log, exactly, this is:
08-06 12:16:28.763: E/dalvikvm-heap(27065): Out of memory on a 184-byte allocation.
>
Sometimes you can get OutOfMemory error, when you try to execute too long SQL statements (eg, you don't use the String[]
argument for the variables in the query, but hard code them in the statement).
Try editing your where statements to field=?
format, and specify the variables in the designated query parameter.
See this thread: Sqlite Out of Memory when preparing update statement
If this isn't the problem in your case, than I can't think of anything else with this little information.