I need to use the commitUpdates method of the Cursor class, but the log tells me that my cursor is not updatable.
Here is my code :
Using java Syntax Highlighting
- mCursor = mDatabase.query(tables, columns, selection, null, null, null, null);
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
When i call the supportsUpdates() method, it allways returns false, and i don't know how to make my cursor updatable.
Thanks for your answers

